aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-12-09 21:07:52 +0100
committerAlexey Rusakov <Kitsune-Ral@users.sf.net>2021-12-09 21:07:52 +0100
commitc585227b3724666e3cf7aab3ab53d6f5930e7218 (patch)
treed10cf581871a357effade2d787243f644118bf6b
parentbd728a91f69382a052d07582788fcecec8b0f35e (diff)
downloadlibquotient-c585227b3724666e3cf7aab3ab53d6f5930e7218.tar.gz
libquotient-c585227b3724666e3cf7aab3ab53d6f5930e7218.zip
Fix CI failure on macOS
CMAKE_INSTALL_RPATH_USE_LINK_PATH is more universal than setting LD_LIBRARY_PATH Also: drop an extra slash in the path to installed quotest.
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 9d286da6..c78a5981 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -97,7 +97,8 @@ jobs:
fi
echo "QUOTEST_ORIGIN=$VERSION @ ${{ runner.os }}/${{ matrix.compiler }}" >>$GITHUB_ENV
echo "CMAKE_ARGS=-G Ninja -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUILD_SHARED_LIBS=false \
- -DCMAKE_INSTALL_PREFIX=~/.local -DCMAKE_PREFIX_PATH=~/.local" >>$GITHUB_ENV
+ -DCMAKE_INSTALL_PREFIX=~/.local -DCMAKE_PREFIX_PATH=~/.local\
+ -DCMAKE_INSTALL_RPATH_USE_LINK_PATH=ON" >>$GITHUB_ENV
if [[ '${{ runner.os }}' != 'Windows' ]]; then
BIN_DIR=/bin
@@ -107,7 +108,6 @@ jobs:
cmake -E make_directory ${{ runner.workspace }}/build
echo "BUILD_PATH=${{ runner.workspace }}/build/libQuotient" >>$GITHUB_ENV
- echo "LD_LIBRARY_PATH=$Qt5_DIR/lib:$LD_LIBRARY_PATH" >>$GITHUB_ENV
- name: Setup MSVC environment
uses: ilammy/msvc-dev-cmd@v1
@@ -159,7 +159,7 @@ jobs:
- name: Build and install libQuotient
run: |
cmake --build $BUILD_PATH --target all install
- ls ~/.local/$BIN_DIR/quotest
+ ls ~/.local$BIN_DIR/quotest
- name: Run tests
env: