Skip to content

Commit

Permalink
Split oracle test runs into separate jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
badgerwithagun committed Mar 23, 2024
1 parent 3b44e15 commit f88b5f1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
matrix:
os: [ ubuntu-latest ]
jdk: [ 11,17,21 ]
db: [ nodb,mysql,postgres,oracle ]
db: [ nodb,mysql,postgres,oracle18,oracle21 ]
fail-fast: false
steps:
- uses: actions/checkout@v4
Expand Down
19 changes: 17 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -440,14 +440,29 @@
</build>
</profile>
<profile>
<id>only-oracle-tests</id>
<id>only-oracle18-tests</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Oracle*.java</include>
<include>**/*Oracle18*.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>only-oracle21-tests</id>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Oracle21*.java</include>
</includes>
</configuration>
</plugin>
Expand Down

0 comments on commit f88b5f1

Please sign in to comment.