Skip to content

Commit a83b025

Browse files
committed
unconditional
1 parent 87c07f6 commit a83b025

File tree

1 file changed

+4
-9
lines changed

1 file changed

+4
-9
lines changed

.github/workflows/conan.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,6 @@ 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 }}
164162

165163
steps:
166164
- name: Checkout Code
@@ -211,12 +209,9 @@ jobs:
211209
pip install conan
212210
conan profile detect
213211
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
212+
mkdir b2-tmp
213+
echo "[requires]\nb2/5.3.2\n" > b2-tmp/conanfile.txt
214+
conan install b2-tmp --build=missing -s compiler.cppstd=14 -s:a compiler.cppstd=14
215+
rm -r b2-tmp
221216
222217
conan create . --build=missing -s compiler.cppstd=14 -s:a compiler.cppstd=14

0 commit comments

Comments
 (0)