Skip to content

Commit 46b60fb

Browse files
committed
Try to fix bad substitution error
1 parent 143f4a2 commit 46b60fb

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/nightly.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,20 @@ jobs:
3636
docker run --rm \
3737
-v ${{github.workspace}}:/workspace \
3838
-w /workspace \
39+
--env BUILD_TYPE=${{matrix.build_type}} \
3940
umf-ubuntu-20.04 \
4041
bash -c "
4142
sudo apt-get update &&
4243
sudo apt-get install -y cmake hwloc libhwloc-dev libnuma-dev libtbb-dev &&
4344
cmake -B /workspace/build \
44-
-DCMAKE_BUILD_TYPE=${{matrix.build_type}} \
45+
-DCMAKE_BUILD_TYPE=\$BUILD_TYPE \
4546
-DCMAKE_C_COMPILER=${{matrix.compiler.c}} \
4647
-DCMAKE_CXX_COMPILER=${{matrix.compiler.cxx}} \
4748
-DUMF_TESTS_FAIL_ON_SKIP=ON \
4849
-DUMF_DEVELOPER_MODE=ON \
4950
-DUMF_BUILD_FUZZTESTS=ON &&
50-
cmake --build /workspace/build --config ${matrix.build_type} --verbose -j$(nproc) &&
51-
ctest -C ${matrix.build_type} --output-on-failure --verbose -L fuzz-long
51+
cmake --build /workspace/build --config \$BUILD_TYPE --verbose -j$(nproc) &&
52+
ctest -C \$BUILD_TYPE --output-on-failure --verbose -L "fuzz-long"
5253
"
5354
5455
valgrind:

0 commit comments

Comments
 (0)