Skip to content
This repository was archived by the owner on Oct 21, 2024. It is now read-only.

Commit eb5db8f

Browse files
committed
Try a more flexible way of finding Boost
1 parent d570649 commit eb5db8f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/cpp.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,11 @@ jobs:
190190
submodules: true
191191
- name: Build
192192
shell: bash
193-
run: ci/scripts/cpp_build.sh $(pwd) $(pwd)/build
193+
run: |
194+
export BOOST_ROOT="$(ls -1 /c/local/boost_* | tail -n1)"
195+
export BOOST_LIBRARYDIR="${BOOST_ROOT}\\lib64-msvc-14.1"
196+
echo "BOOST_ROOT: ${BOOST_ROOT}"
197+
ci/scripts/cpp_build.sh $(pwd) $(pwd)/build
194198
- name: Test
195199
shell: bash
196200
run: ci/scripts/cpp_test.sh $(pwd) $(pwd)/build

0 commit comments

Comments
 (0)