aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Poletti <poletti.marco@gmail.com>2022-12-03 14:44:58 -0800
committerMarco Poletti <poletti.marco@gmail.com>2022-12-03 14:44:58 -0800
commita390792d725ec58bc69f5c083c30ab7b2716e35d (patch)
tree2a96d473b7675b4451ee48f7da998d61f4697fd1
parent18ad513b12357a1a3c4b890da4cbb7121a25e190 (diff)
downloadgoogle-fruit-a390792d725ec58bc69f5c083c30ab7b2716e35d.tar.gz
Set the Boost dir explicitly in Windows CI tests.
Before it was using the wrong path and set-output is deprecated in Github actions anyway so it was just a matter of time before this broke.
-rw-r--r--.github/workflows/test-on-windows.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/test-on-windows.yml b/.github/workflows/test-on-windows.yml
index 62d2d09..6df63b0 100644
--- a/.github/workflows/test-on-windows.yml
+++ b/.github/workflows/test-on-windows.yml
@@ -84,7 +84,6 @@ jobs:
- name: Set up MinGW
uses: egor-tensin/setup-mingw@v2
- name: Build Boost
- id: boost
uses: egor-tensin/build-boost@v1
if: matrix.config.use_boost
with:
@@ -94,7 +93,7 @@ jobs:
- name: set-cmake-boost-flags
if: matrix.config.use_boost
shell: bash
- run: echo "ADDITIONAL_CMAKE_ARGS=$ADDITIONAL_CMAKE_ARGS -DBoost_INCLUDE_DIR=${{steps.boost.outputs.librarydir}}" >> $GITHUB_ENV
+ run: echo "ADDITIONAL_CMAKE_ARGS=$ADDITIONAL_CMAKE_ARGS -DBoost_INCLUDE_DIR=D:\a\fruit\boost" >> $GITHUB_ENV
- name: set-cmake-non-boost-flags
if: ${{ !matrix.config.use_boost }}
shell: bash