File tree Expand file tree Collapse file tree 3 files changed +5
-4
lines changed
Expand file tree Collapse file tree 3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1818 - name : Unit and Integration tests
1919 run : |
2020 ./gradlew clean build \
21- -Psql.test.dialects=mysql
21+ -Psql.test.dialects=mysql,oracle
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ configurations.testImplementation {
4040tasks.test {
4141 // CI-specific configuration
4242 val isCI = System .getenv(" CI" )?.toBoolean() ? : false
43- val enabledDialects = System .getProperty(" sql.test.dialects" ) ? : if (isCI) " mysql" else " mysql,postgresql,mariadb "
43+ val enabledDialects = System .getProperty(" sql.test.dialects" ) ? : if (isCI) " mysql" else " mysql,oracle "
4444
4545 systemProperty(" sql.test.dialects" , enabledDialects)
4646
Original file line number Diff line number Diff line change @@ -64,8 +64,9 @@ public String getDatabaseName() {
6464 }
6565 }
6666 .withPassword ("oracle123" )
67- .withSharedMemorySize (1073741824L )
68- .withStartupTimeout (Duration .ofMinutes (20 ))
67+ .withSharedMemorySize (2147483648L )
68+ .withStartupTimeout (Duration .ofMinutes (10 ))
69+ .withStartupAttempts (2 )
6970 .waitingFor (new WaitAllStrategy ()
7071 .withStrategy (Wait .forListeningPort ())
7172 .withStrategy (Wait .forLogMessage (".*DATABASE IS READY TO USE.*\\ n" , 1 ))
You can’t perform that action at this time.
0 commit comments