We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae3bac7 commit 87c07f6Copy full SHA for 87c07f6
.github/workflows/conan.yml
@@ -159,6 +159,8 @@ jobs:
159
platform: linux_x86_64-debian-bookworm
160
image: debian:bookworm
161
runs_on: buildjet-8vcpu-ubuntu-2204
162
+ env:
163
+ MATRIX_TARGET: ${{ matrix.target }}
164
165
steps:
166
- name: Checkout Code
@@ -208,4 +210,13 @@ jobs:
208
210
209
211
pip install conan
212
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
222
conan create . --build=missing -s compiler.cppstd=14 -s:a compiler.cppstd=14
0 commit comments