Skip to content

Commit 87c07f6

Browse files
committed
try to build b2 from source
1 parent ae3bac7 commit 87c07f6

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/conan.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ jobs:
159159
platform: linux_x86_64-debian-bookworm
160160
image: debian:bookworm
161161
runs_on: buildjet-8vcpu-ubuntu-2204
162+
env:
163+
MATRIX_TARGET: ${{ matrix.target }}
162164

163165
steps:
164166
- name: Checkout Code
@@ -208,4 +210,13 @@ jobs:
208210
209211
pip install conan
210212
conan profile detect
213+
214+
if [[ ${MATRIX_TARGET} = "x86_64-debian-bullseye" ]]
215+
then
216+
mkdir b2-tmp
217+
echo "[requires]\nb2/5.3.2\n" > b2-tmp/conanfile.txt
218+
conan install b2-tmp --build=missing -s compiler.cppstd=14 -s:a compiler.cppstd=14
219+
rm -r b2-tmp
220+
fi
221+
211222
conan create . --build=missing -s compiler.cppstd=14 -s:a compiler.cppstd=14

0 commit comments

Comments
 (0)