From 1d16d9770c4118426fbca836304eb6c25b9835f0 Mon Sep 17 00:00:00 2001 From: opensearch-ci-bot Date: Wed, 13 Dec 2023 00:07:03 +0000 Subject: [PATCH 1/2] Increment version to 1.3.15-SNAPSHOT Signed-off-by: opensearch-ci-bot --- .github/workflows/build.yml | 10 +++++----- .github/workflows/multi-node-test-workflow.yml | 2 +- build.gradle | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 14fc7338..c88ec6a0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,11 +30,11 @@ jobs: - name: Checkout Branch uses: actions/checkout@v2 - name: Build with Gradle - run: ./gradlew build -Dopensearch.version=1.3.14-SNAPSHOT + run: ./gradlew build -Dopensearch.version=1.3.15-SNAPSHOT - name: Pull and Run Docker for security tests run: | - version=1.3.14-SNAPSHOT - plugin_version=1.3.14.0-SNAPSHOT + version=1.3.15-SNAPSHOT + plugin_version=1.3.15.0-SNAPSHOT pwd=`pwd` echo $pwd cd .. @@ -108,7 +108,7 @@ jobs: - name: Checkout Branch uses: actions/checkout@v2 - name: Build with Gradle - run: ./gradlew.bat build -D"opensearch.version=1.3.14-SNAPSHOT" -x integTest -x jacocoTestReport + run: ./gradlew.bat build -D"opensearch.version=1.3.15-SNAPSHOT" -x integTest -x jacocoTestReport env: _JAVA_OPTIONS: -Xmx4096M - name: Create Artifact Path @@ -136,7 +136,7 @@ jobs: - name: Checkout Branch uses: actions/checkout@v2 - name: Build with Gradle - run: ./gradlew build -Dopensearch.version=1.3.14-SNAPSHOT -x integTest -x jacocoTestReport + run: ./gradlew build -Dopensearch.version=1.3.15-SNAPSHOT -x integTest -x jacocoTestReport env: _JAVA_OPTIONS: -Xmx4096M - name: Create Artifact Path diff --git a/.github/workflows/multi-node-test-workflow.yml b/.github/workflows/multi-node-test-workflow.yml index ad85c418..fbf802e8 100644 --- a/.github/workflows/multi-node-test-workflow.yml +++ b/.github/workflows/multi-node-test-workflow.yml @@ -27,7 +27,7 @@ jobs: - name: Checkout Branch uses: actions/checkout@v2 - name: Run integration tests with multi node config - run: ./gradlew integTest -PnumNodes=5 -Dopensearch.version=1.3.14-SNAPSHOT + run: ./gradlew integTest -PnumNodes=5 -Dopensearch.version=1.3.15-SNAPSHOT - name: Run Backwards Compatibility Tests run: | echo "Running backwards compatibility tests ..." diff --git a/build.gradle b/build.gradle index 407f6474..41ae443e 100644 --- a/build.gradle +++ b/build.gradle @@ -9,7 +9,7 @@ buildscript { distribution = 'oss-zip' opensearch_group = "org.opensearch" isSnapshot = "true" == System.getProperty("build.snapshot", "true") - opensearch_version = System.getProperty("opensearch.version", "1.3.14-SNAPSHOT") + opensearch_version = System.getProperty("opensearch.version", "1.3.15-SNAPSHOT") // 1.0.0 -> 1.0.0.0, and 1.0.0-SNAPSHOT -> 1.0.0.0-SNAPSHOT opendistro_plugin_version = System.getProperty("bwc.version", "1.13.0.1") buildVersionQualifier = System.getProperty("build.version_qualifier", "") From eab439c76690cf88cb33a20f3e3c46480aca9697 Mon Sep 17 00:00:00 2001 From: Peter Zhu Date: Thu, 29 Feb 2024 13:46:29 -0500 Subject: [PATCH 2/2] push again Signed-off-by: Peter Zhu