Skip to content

Commit aa429d2

Browse files
committed
try to make it work v9e10
Signed-off-by: christian.lutnik <[email protected]>
1 parent a1206e3 commit aa429d2

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

.github/workflows/pullrequest.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Check out the code
2222
uses: actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
2323

24-
- name: Set up the JDK
24+
- name: Set up JDK ${{ matrix.build.java }}
2525
uses: actions/setup-java@e9343db97e09d87a3c50e544105d99fe912c204b
2626
with:
2727
java-version: ${{ matrix.build.java }}
@@ -41,12 +41,19 @@ jobs:
4141
restore-keys: |
4242
${{ runner.os }}${{ matrix.build.java }}-maven-
4343
44-
- name: Verify with Maven
45-
run: mvn --batch-mode --update-snapshots --activate-profiles e2e,${{ matrix.build.profile }} verify
44+
# run tests with vmlens
45+
- if: matrix.build.java == '17'
46+
name: Test with vmlens
47+
run: mvn --batch-mode --update-snapshots --activate-profiles e2e,${{ matrix.build.profile }} vmlens-maven-plugin:test
4648

49+
# verify, but skip test step, as this was already done in the step before
4750
- if: matrix.build.java == '17'
51+
name: Verify
52+
run: mvn --batch-mode --update-snapshots --activate-profiles e2e,${{ matrix.build.profile }} verify -DskipTests
53+
54+
- if: matrix.build.java != '17'
4855
name: Verify with vmlens
49-
run: mvn vmlens-maven-plugin:test --activate-profiles e2e,${{ matrix.build.profile }}
56+
run: mvn --batch-mode --update-snapshots --activate-profiles e2e,${{ matrix.build.profile }} verify
5057

5158
- if: matrix.build.java == '17'
5259
name: Upload coverage to Codecov

0 commit comments

Comments
 (0)