Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
fail-fast: false
matrix:
jdk: [8, 11]
schema:
- "ghcr.io/hydrologicengineeringcenter/cwms-database/cwms/database-ready-ora-23.5:latest-dev"
- "ghcr.io/hydrologicengineeringcenter/cwms-database/cwms/database-ready-ora-23.5:25-07-01-RC06"
name: build and test
runs-on: ubuntu-latest
outputs:
Expand All @@ -31,7 +34,7 @@ jobs:
id: thebuild
run: ./gradlew build --info --init-script init.gradle
- name: integration tests
run: ./gradlew integrationtest --info --init-script init.gradle
run: ./gradlew integrationtest --info --init-script init.gradle -PCDA.oracle.database.image=${{matrix.schema}}
- name: Publish Test Report
uses: mikepenz/action-junit-report@v5
if: success() || failure() # always run even if the previous step fails
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ else if(tmp.toLowerCase().endsWith("staging")) {
}
else
{
ret = Dao.versionAsInteger(tmp);
ret = Dao.versionAsInteger(tmp.replaceAll("-RC.*", "").replace("-","."));
}
return ret;
}
Expand Down
Loading