File tree Expand file tree Collapse file tree 2 files changed +2
-14
lines changed Expand file tree Collapse file tree 2 files changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ jobs:
48
48
run : echo 'ARG_LINE=-D"excludedGroups=TestcontainersTests,RequireIllegalAccess"' >> $GITHUB_ENV
49
49
- name : Set env command line option
50
50
if : ${{ matrix.os == 'ubuntu-latest' }}
51
- run : echo 'ENV_GITHUB ="-Denv.GITHUB "' >> $GITHUB_ENV
51
+ run : echo 'CI_ONLY_TEST_GROUPS ="-Denv.CI_ONLY_TEST_GROUPS "' >> $GITHUB_ENV
52
52
- name : Test with Maven
53
53
if : ${{ matrix.os != 'windows-latest' }}
54
- run : ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true" $ENV_GITHUB $ARG_LINE
54
+ run : ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true" $CI_ONLY_TEST_GROUPS $ARG_LINE
55
55
- name : Test with Maven
56
56
if : ${{ matrix.os == 'windows-latest' && matrix.java == '11' }}
57
57
run : ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true" -D"argLine=--illegal-access=permit"
Original file line number Diff line number Diff line change 418
418
</build >
419
419
420
420
<profiles >
421
- <profile >
422
- <!-- Run slow tests only on github ci, to force run otherwise use -D"env.GITHUB" -->
423
- <id >github-ci</id >
424
- <activation >
425
- <property >
426
- <name >env.GITHUB</name >
427
- </property >
428
- </activation >
429
- <properties >
430
- <excludedGroups />
431
- </properties >
432
- </profile >
433
421
<profile >
434
422
<id >pre16</id >
435
423
<activation >
You can’t perform that action at this time.
0 commit comments