Skip to content

Commit 881af34

Browse files
committed
Add instructions to two CI jobs to run the unit_test binary with the [z3] tag.
This allows us to run the (now hidden) z3 jobs, so that `z3` is not required for a argument-less invocation of the unit-test binary.
1 parent 557e822 commit 881af34

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/pull-request-checks.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ jobs:
107107
- name: Run unit tests
108108
run: |
109109
make -C unit test
110+
make -C unit test "[z3]"
110111
make -C jbmc/unit test
111112
- name: Run expected failure unit tests
112113
run: |
@@ -288,7 +289,9 @@ jobs:
288289
- name: Print ccache stats
289290
run: ccache -s
290291
- name: Run unit tests
291-
run: cd unit; ./unit_tests
292+
run: |
293+
cd unit; ./unit_tests
294+
cd unit; ./unit_tests "[z3]"
292295
- name: Run JBMC unit tests
293296
run: cd jbmc/unit; ./unit_tests
294297
- name: Run regression tests

0 commit comments

Comments
 (0)