File tree Expand file tree Collapse file tree 4 files changed +16
-6
lines changed
docker-test-oracle-connection Expand file tree Collapse file tree 4 files changed +16
-6
lines changed Original file line number Diff line number Diff line change 4949 - name : Docker Inspect (Health Check - DB Containers)
5050 if : ${{ (matrix.os == 'ubuntu-22.04') && (matrix.dotnet-version == '3.1.x') }}
5151 uses : ./.github/workflows/docker-inspect-health-check
52+
53+ - name : Docker Test Oracle Connection
54+ if : ${{ (matrix.os == 'ubuntu-22.04') && (matrix.dotnet-version == '3.1.x') }}
55+ uses : ./.github/workflows/docker-test-oracle-connection
56+ env :
57+ ORACLE_PWD : ${{ inputs.dbPassword }}
5258
5359 - name : Docker Execute (Seed Data)
5460 if : ${{ (matrix.os == 'ubuntu-22.04') && (matrix.dotnet-version == '3.1.x') }}
@@ -101,6 +107,11 @@ jobs:
101107 - name : Docker Inspect (Health Check - DB Containers)
102108 uses : ./.github/workflows/docker-inspect-health-check
103109
110+ - name : Docker Test Oracle Connection
111+ uses : ./.github/workflows/docker-test-oracle-connection
112+ env :
113+ ORACLE_PWD : ${{ inputs.dbPassword }}
114+
104115 - name : Docker Execute (Seed Data)
105116 uses : ./.github/workflows/docker-execute-seed-data
106117 with :
Original file line number Diff line number Diff line change 3838
3939 - name : Docker Inspect (Health Check - DB Containers)
4040 uses : ./.github/workflows/docker-inspect-health-check
41+
42+ - name : Docker Test Oracle Connection
43+ uses : ./.github/workflows/docker-test-oracle-connection
44+ env :
45+ ORACLE_PWD : ${{ inputs.dbPassword }}
4146
4247 - name : Docker Execute (Seed Data)
4348 uses : ./.github/workflows/docker-execute-seed-data
Original file line number Diff line number Diff line change 99 using : ' composite'
1010
1111 steps :
12- - name : Docker Test Oracle Connection
13- uses : ./.github/workflows/docker-test-oracle-connection
14- env :
15- ORACLE_PWD : ${{ inputs.dbPassword }}
16-
1712 - name : Docker Execute (ORACLE - Seed Data)
1813 shell : bash
1914 run : |
Original file line number Diff line number Diff line change 4343 Write-Host "Connection failed. Waiting for $($waitTime) seconds before retrying..."
4444 Start-Sleep -Seconds $waitTime
4545 }
46-
4746 if ($i -eq $retryCount) {
4847 Write-Host "Exceeded maximum retry attempts. Exiting script."
4948 exit 1
You can’t perform that action at this time.
0 commit comments