From 38f7b69701534d05814e6fa190d4ee9b0ef887b3 Mon Sep 17 00:00:00 2001 From: Yury-Fridlyand Date: Thu, 4 Aug 2022 09:58:39 -0700 Subject: [PATCH] Remove BWC tests (#721) Signed-off-by: Yury Fridlyand --- .github/workflows/sql-test-and-build-workflow.yml | 3 --- integ-test/build.gradle | 4 ++++ scripts/bwctest.sh | 0 3 files changed, 4 insertions(+), 3 deletions(-) mode change 100755 => 100644 scripts/bwctest.sh diff --git a/.github/workflows/sql-test-and-build-workflow.yml b/.github/workflows/sql-test-and-build-workflow.yml index fcc63433a8..70d1c3a3e5 100644 --- a/.github/workflows/sql-test-and-build-workflow.yml +++ b/.github/workflows/sql-test-and-build-workflow.yml @@ -22,9 +22,6 @@ jobs: - name: Build with Gradle run: ./gradlew build assemble - - name: Run backward compatibility tests - run: ./scripts/bwctest.sh - - name: Create Artifact Path run: | mkdir -p opensearch-sql-builds diff --git a/integ-test/build.gradle b/integ-test/build.gradle index 67947ca771..d6b2c08429 100644 --- a/integ-test/build.gradle +++ b/integ-test/build.gradle @@ -187,6 +187,10 @@ task compileJdbc(type: Exec) { } } +/* +BWC test suite was running on OpenDistro which was discontinued and no available anymore for testing. +Test suite is not removed, because it could be reused later between different OpenSearch versions. +*/ String bwcVersion = "1.13.2.0"; String baseName = "sqlBwcCluster" String bwcFilePath = "src/test/resources/bwc/" diff --git a/scripts/bwctest.sh b/scripts/bwctest.sh old mode 100755 new mode 100644