Skip to content

Commit 328e4b5

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 328e4b5

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
@@ -108,6 +108,7 @@ jobs:
108108
run: |
109109
make -C unit test
110110
make -C jbmc/unit test
111+
make TAGS="[z3]" -C unit test
111112
- name: Run expected failure unit tests
112113
run: |
113114
make TAGS="[!shouldfail]" -C unit test
@@ -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+
./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)