File tree 3 files changed +8
-17
lines changed
src/test/java/org/apache/ibatis/parsing
3 files changed +8
-17
lines changed Original file line number Diff line number Diff line change @@ -55,10 +55,10 @@ jobs:
55
55
run : echo 'ARG_LINE=-D"excludedGroups=TestcontainersTests,RequireIllegalAccess"' >> $GITHUB_ENV
56
56
- name : Set env command line option
57
57
if : ${{ matrix.os == 'ubuntu-latest' }}
58
- run : echo 'ENV_TRAVIS ="-Denv.TRAVIS "' >> $GITHUB_ENV
58
+ run : echo 'ENV_GITHUB ="-Denv.GITHUB "' >> $GITHUB_ENV
59
59
- name : Test with Maven
60
60
if : ${{ matrix.os != 'windows-latest' }}
61
- run : ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true" $ENV_TRAVIS $ARG_LINE
61
+ run : ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true" $ENV_GITHUB $ARG_LINE
62
62
- name : Test with Maven
63
63
if : ${{ matrix.os == 'windows-latest' && (matrix.java == '8')}}
64
64
run : ./mvnw test -B -D"license.skip=true" -D"jacoco.skip=true"
Original file line number Diff line number Diff line change 119
119
<url >https://github.com/mybatis/mybatis-3/issues</url >
120
120
</issueManagement >
121
121
<ciManagement >
122
- <system >Travis CI </system >
123
- <url >https://travis-ci.org /mybatis/mybatis-3/</url >
122
+ <system >Github </system >
123
+ <url >https://github.com /mybatis/mybatis-3/actions </url >
124
124
</ciManagement >
125
125
<distributionManagement >
126
126
<site >
397
397
398
398
<profiles >
399
399
<profile >
400
- <!-- Run slow tests only on travis ci, to force run otherwise use -D"env.TRAVIS " -->
401
- <id >travis -ci</id >
400
+ <!-- Run slow tests only on github ci, to force run otherwise use -D"env.GITHUB " -->
401
+ <id >github -ci</id >
402
402
<activation >
403
403
<property >
404
- <name >env.TRAVIS </name >
404
+ <name >env.GITHUB </name >
405
405
</property >
406
406
</activation >
407
407
<properties >
410
410
</profile >
411
411
</profiles >
412
412
413
- <!-- Will remove after released mybatis-parent 32+ (See https://github.com/mybatis/mybatis-3/issues/1926) -->
414
- <repositories >
415
- <repository >
416
- <id >sonatype-oss-snapshots</id >
417
- <name >Sonatype OSS Snapshots Repository</name >
418
- <url >https://oss.sonatype.org/content/repositories/snapshots</url >
419
- </repository >
420
- </repositories >
421
-
422
413
</project >
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ void shallNotInterpolateSkippedVaiables() {
86
86
assertEquals ("The null is ${skipped} variable" , parser .parse ("The ${skipped} is \\ ${skipped} variable" ));
87
87
}
88
88
89
- @ Disabled ("Because it randomly fails on Travis CI. It could be useful during development." )
89
+ @ Disabled ("Because it randomly fails on Github CI. It could be useful during development." )
90
90
@ Test
91
91
void shouldParseFastOnJdk7u6 () {
92
92
Assertions .assertTimeout (Duration .ofMillis (1000 ), () -> {
You can’t perform that action at this time.
0 commit comments