Skip to content

Commit cf593f9

Browse files
committed
[ci] add exist versions to test matrix
Also, remove OS from matrix as there was only one option to begin with.
1 parent efdddcd commit cf593f9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name: CI
22
on: [push, pull_request]
33
jobs:
44
build:
5-
name: Build and Test (${{ matrix.os }} / OpenJDK ${{ matrix.jdk }})
5+
name: Build and Test (${{ matrix.exist }} / OpenJDK ${{ matrix.jdk }})
66
strategy:
77
fail-fast: true
88
matrix:
9+
exist: ['6.0.0', '6.4.0']
910
jdk: ['8', '11']
10-
os: [ubuntu-latest]
11-
runs-on: ${{ matrix.os }}
11+
runs-on: 'ubuntu-latest'
1212
steps:
1313
- uses: actions/checkout@v4
1414
- name: Set up JDK ${{ matrix.jdk }}
@@ -27,4 +27,4 @@ jobs:
2727
- name: Test
2828
env:
2929
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
30-
run: mvn verify -P e2e-tests-with-recording
30+
run: mvn verify -P e2e-tests-with-recording -Dexist.processor.version=${{ matrix.exist }}

0 commit comments

Comments
 (0)