File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments