We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bbffe8 commit 0afa703Copy full SHA for 0afa703
.github/workflows/nightly.yml
@@ -57,6 +57,14 @@ jobs:
57
- name: Build
58
run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}} --verbose -j$(nproc)
59
60
+ - name: Run regular tests
61
+ working-directory: ${{github.workspace}}/build
62
+ run: ctest -C ${{matrix.build_type}} --output-on-failure -E "fuzz|test_init_teardown"
63
+
64
+ - name: Run regular tests with proxy library
65
+ working-directory: ${{env.BUILD_DIR}}
66
+ run: LD_PRELOAD=./lib/libumf_proxy.so ctest -C ${{matrix.build_type}} --output-on-failure -E "fuzz|test_init_teardown"
67
68
- name: Fuzz long test
69
working-directory: ${{github.workspace}}/build
70
run: ctest -C ${{matrix.build_type}} --output-on-failure --verbose -L "fuzz-long"
0 commit comments