Skip to content

Commit 433a0cb

Browse files
committed
remove Java 17 from test matrix
* add a canary to test the availability of SMT solvers
1 parent c0a6811 commit 433a0cb

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ jobs:
3434
- name: Setup SMT solvers
3535
uses: keyproject/setup-smt@v0
3636

37+
- name: z3 version
38+
run: z3 --version
39+
40+
- name: cvc5 version
41+
run: cvc5 --version
42+
43+
3744
- name: Set up JDK 21
3845
uses: actions/setup-java@v4
3946
with:

.github/workflows/tests_winmac.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
os: [macos-latest, ubuntu-latest, windows-latest]
17-
java: [17,21]
17+
java: [21,23]
1818
continue-on-error: true
1919
runs-on: ${{ matrix.os }}
2020
env:
@@ -25,6 +25,13 @@ jobs:
2525
- name: Setup SMT solvers
2626
uses: keyproject/setup-smt@v0
2727

28+
- name: z3 version
29+
run: z3 --version
30+
31+
- name: cvc5 version
32+
run: cvc5 --version
33+
34+
2835
- name: Set up JDK ${{matrix.java}}
2936
uses: actions/setup-java@v4
3037
with:

0 commit comments

Comments
 (0)