We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent efdddcd commit e40b33eCopy full SHA for e40b33e
1 file changed
.github/workflows/ci.yml
@@ -2,13 +2,13 @@ name: CI
2
on: [push, pull_request]
3
jobs:
4
build:
5
- name: Build and Test (${{ matrix.os }} / OpenJDK ${{ matrix.jdk }})
+ name: Build and Test (${{ matrix.exist }} / OpenJDK ${{ matrix.jdk }})
6
strategy:
7
fail-fast: true
8
matrix:
9
+ exist: ['6.1.0', '6.4.0']
10
jdk: ['8', '11']
- os: [ubuntu-latest]
11
- runs-on: ${{ matrix.os }}
+ runs-on: 'ubuntu-latest'
12
steps:
13
- uses: actions/checkout@v4
14
- name: Set up JDK ${{ matrix.jdk }}
@@ -27,4 +27,4 @@ jobs:
27
- name: Test
28
env:
29
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
30
- run: mvn verify -P e2e-tests-with-recording
+ run: mvn verify -P e2e-tests-with-recording -Dexist.processor.version=${{ matrix.exist }}
0 commit comments