Skip to content

Commit

Permalink
resolve oracle integration test maven connection timeout issue (DAT-1…
Browse files Browse the repository at this point in the history
…0239) (#2821)

Oracle integration tests frequently fail with the following error:

transfer failed for https://repo.maven.apache.org/maven2/org/firebirdsql/jdbc/jaybird/4.0.6.java8/jaybird-4.0.6.java8.pom: Connection timed out (Read failed)

This issue in another repository provided the suggestion on how to fix this: actions/runner-images#1499 (comment)
  • Loading branch information
StevenMassaro committed May 4, 2022
1 parent 0fe6a4d commit da76104
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ jobs:
password: ${{ secrets.ARTIFACTORY_TOKEN }}

- name: Run Tests
run: mvn -B jar:jar jar:test-jar surefire:test -DtrimStackTrace=false -Dliquibase.sdk.testSystem.test=${{ matrix.testSystem }} -Dliquibase.sdk.testSystem.acceptLicenses=${{ matrix.testSystem }} -Dtest=*IntegrationTest,*ExecutorTest -DfailIfNoTests=false
run: mvn -B jar:jar jar:test-jar surefire:test -DtrimStackTrace=false -Dliquibase.sdk.testSystem.test=${{ matrix.testSystem }} -Dliquibase.sdk.testSystem.acceptLicenses=${{ matrix.testSystem }} -Dtest=*IntegrationTest,*ExecutorTest -DfailIfNoTests=false -Dhttp.keepAlive=false -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120

- name: Archive Test Results
if: ${{ always() }}
Expand Down

0 comments on commit da76104

Please sign in to comment.