Skip to content

Commit

Permalink
Tweak environment variables for non-embedded.
Browse files Browse the repository at this point in the history
  • Loading branch information
jamadden committed Dec 2, 2020
1 parent 723c1ab commit 18426d2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ env:
CCACHE_SLOPPINESS: file_macro,time_macros,include_file_ctime,include_file_mtime
CCACHE_NOHASHDIR: true

BUILD_LIBS: $HOME/.libs
LD_LIBRARY_PATH: "$BUILD_LIBS/lib"
BUILD_LIBS: ~/.libs
LD_LIBRARY_PATH: "~/.libs/lib"

#

Expand Down Expand Up @@ -364,8 +364,9 @@ jobs:
env:
GEVENTSETUP_EMBED: 0
GEVENTSETUP_EV_VERIFY: 1
LDFLAGS: "-L$BUILD_LIBS/lib"
LDFLAGS: "-L~/.libs/lib"
run: |
mkdir -p ~/.libs/lib
ls -l deps/libev/
pushd deps/libev && ./configure -C --prefix=$BUILD_LIBS && make install && popd
pushd deps/c-ares && ./configure -C --prefix=$BUILD_LIBS && make -j4 install && popd
Expand Down

0 comments on commit 18426d2

Please sign in to comment.