Skip to content

Commit bcb04e0

Browse files
committed
x
1 parent 9a038b3 commit bcb04e0

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/nightly.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Various non-standard tests, requiring e.g. longer run
22
name: Nightly
33

4-
# This job is run at 04:00 UTC every day or on demand.
54
on:
6-
workflow_dispatch:
7-
schedule:
8-
- cron: '0 4 * * *'
5+
push:
6+
branches-ignore:
7+
- 'dependabot/**'
8+
pull_request:
99

1010
permissions:
1111
contents: read
@@ -53,11 +53,11 @@ jobs:
5353

5454
- name: Run regular tests
5555
working-directory: ${{github.workspace}}/build
56-
run: ctest -C ${{matrix.build_type}} --output-on-failure -E "fuzz"
56+
run: ctest -C ${{matrix.build_type}} --output-on-failure -E "fuzz|test_init_teardown"
5757

5858
- name: Run regular tests with proxy library
5959
working-directory: ${{env.BUILD_DIR}}
60-
run: LD_PRELOAD=./lib/libumf_proxy.so ctest --C ${{matrix.build_type}} -output-on-failure -E "fuzz"
60+
run: LD_PRELOAD=./lib/libumf_proxy.so ctest --C ${{matrix.build_type}} -output-on-failure -E "fuzz|test_init_teardown"
6161

6262
- name: Fuzz long test
6363
working-directory: ${{github.workspace}}/build

0 commit comments

Comments
 (0)