From f395476096e2595dc50a9b9a9cf79da15ea9f3fb Mon Sep 17 00:00:00 2001 From: Alex Hemsath <57361211+nr-ahemsath@users.noreply.github.com> Date: Thu, 14 Sep 2023 13:54:19 -0700 Subject: [PATCH] Disable Oracle integration tests in CI (#1917) * Disable running the Oracle integration tests for now * Remove references to internal info --- .github/workflows/all_solutions.yml | 3 ++- .github/workflows/run_integration_tests.yml | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/all_solutions.yml b/.github/workflows/all_solutions.yml index 538e064892..0fcf546434 100644 --- a/.github/workflows/all_solutions.yml +++ b/.github/workflows/all_solutions.yml @@ -486,7 +486,8 @@ jobs: MySql, NServiceBus, NServiceBus5, - Oracle, + # Disabling Oracle temporarily + #Oracle, Postgres, RabbitMq, Redis, diff --git a/.github/workflows/run_integration_tests.yml b/.github/workflows/run_integration_tests.yml index 2f313f6104..b9124dc220 100644 --- a/.github/workflows/run_integration_tests.yml +++ b/.github/workflows/run_integration_tests.yml @@ -69,7 +69,9 @@ jobs: run: | if [ "${{ github.event.inputs.unbounded-test-namespaces }}" == "ALL" ] ; then # Use the full list of namespaces - namespaces="[ 'CosmosDB', 'Couchbase', 'Elasticsearch', 'MongoDB', 'Msmq', 'MsSql', 'MySql', 'NServiceBus', 'NServiceBus5', 'Oracle', 'Postgres', 'RabbitMq', 'Redis' ]" + # Oracle is disabled temporarily + #namespaces="[ 'CosmosDB', 'Couchbase', 'Elasticsearch', 'MongoDB', 'Msmq', 'MsSql', 'MySql', 'NServiceBus', 'NServiceBus5', 'Oracle', 'Postgres', 'RabbitMq', 'Redis' ]" + namespaces="[ 'CosmosDB', 'Couchbase', 'Elasticsearch', 'MongoDB', 'Msmq', 'MsSql', 'MySql', 'NServiceBus', 'NServiceBus5', 'Postgres', 'RabbitMq', 'Redis' ]" else # Just use the supplied list of namespaces namespaces="[ ${{ github.event.inputs.unbounded-test-namespaces }} ]"