Skip to content

Commit 0afa703

Browse files
committed
add regular tests under fuzz in nighlty CI
1 parent 6bbffe8 commit 0afa703

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/nightly.yml

+8
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ jobs:
5757
- name: Build
5858
run: cmake --build ${{github.workspace}}/build --config ${{matrix.build_type}} --verbose -j$(nproc)
5959

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+
6068
- name: Fuzz long test
6169
working-directory: ${{github.workspace}}/build
6270
run: ctest -C ${{matrix.build_type}} --output-on-failure --verbose -L "fuzz-long"

0 commit comments

Comments
 (0)