Skip to content

Commit d13b32a

Browse files
committed
HHH-19867 - Add support for Oracle 26ai in OTP
1 parent e8e59b0 commit d13b32a

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -153,10 +153,11 @@ jobs:
153153
fail-fast: false
154154
matrix:
155155
include:
156-
- rdbms: autonomous-transaction-processing-serverless
156+
#- rdbms: autonomous-transaction-processing-serverless-26ai
157+
#- rdbms: autonomous-transaction-processing-serverless-19c
157158
- rdbms: base-database-service-19c
158159
- rdbms: base-database-service-21c
159-
- rdbms: base-database-service-23ai
160+
- rdbms: base-database-service-26ai
160161
steps:
161162
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
162163
with:
@@ -210,7 +211,7 @@ jobs:
210211
${{ steps.cache-key.outputs.buildtool-monthly-cache-key }}-
211212
212213
- id: create_database
213-
uses: loiclefevre/test@03ce1d1ee2313b45249e7bf6b84dc0f4333cdd77 # v1.0.18
214+
uses: loiclefevre/test@a802f8bb53b42b16c253d75f86b06360d150c6e4 # v1.0.22
214215
with:
215216
oci-service: ${{ matrix.rdbms }}
216217
action: create
@@ -231,7 +232,7 @@ jobs:
231232
run: ./ci/build-github.sh
232233
shell: bash
233234

234-
- uses: loiclefevre/test@03ce1d1ee2313b45249e7bf6b84dc0f4333cdd77 # v1.0.18
235+
- uses: loiclefevre/test@a802f8bb53b42b16c253d75f86b06360d150c6e4 # v1.0.22
235236
if: always()
236237
with:
237238
oci-service: ${{ matrix.rdbms }}
@@ -345,4 +346,4 @@ jobs:
345346
path: |
346347
./**/target/reports/tests/
347348
- name: Omit produced artifacts from build cache
348-
run: ./ci/before-cache.sh
349+
run: ./ci/before-cache.sh

ci/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ elif [ "$RDBMS" == "oracle_db23c" ]; then
5353
export SERVICE=$(echo $INFO | jq -r '.database' | jq -r '.service')
5454
goal="-Pdb=oracle_cloud_db23c -DrunID=$RUNID -DdbHost=$HOST -DdbService=$SERVICE"
5555
# OTP
56-
elif [ "$RDBMS" == "autonomous-transaction-processing-serverless" ] || [ "$RDBMS" == "base-database-service-19c" ] || [ "$RDBMS" == "base-database-service-21c" ] || [ "$RDBMS" == "base-database-service-23ai" ]; then
56+
elif [ "$RDBMS" == "autonomous-transaction-processing-serverless-19c" ] || [ "$RDBMS" == "autonomous-transaction-processing-serverless-26ai" ] || [ "$RDBMS" == "autonomous-transaction-processing-serverless" ] || [ "$RDBMS" == "base-database-service-19c" ] || [ "$RDBMS" == "base-database-service-21c" ] || [ "$RDBMS" == "base-database-service-26ai" ]; then
5757
echo "Managing OTP Database..."
5858
goal="-Pdb=oracle_test_pilot_database -DrunID=$RUNID -DdbPassword=$TESTPILOT_PASSWORD -DdbConnectionStringSuffix=$TESTPILOT_CONNECTION_STRING_SUFFIX"
5959
elif [ "$RDBMS" == "db2" ] || [ "$RDBMS" == "db2_11_5" ]; then

0 commit comments

Comments
 (0)