File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments