From 97e331e2de2da9ece3c44aa1ad55519804f16dfd Mon Sep 17 00:00:00 2001 From: opensearch-ci-bot Date: Fri, 2 Feb 2024 00:06:59 +0000 Subject: [PATCH] Increment version to 1.4.0-SNAPSHOT Signed-off-by: opensearch-ci-bot --- .github/workflows/build.yml | 6 +++--- .github/workflows/multi-node-test-workflow.yml | 2 +- build.gradle | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1e5fbc69..de743958 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: - name: Checkout Branch uses: actions/checkout@v2 - name: Build with Gradle - run: ./gradlew build -Dopensearch.version=1.3.0-SNAPSHOT + run: ./gradlew build -Dopensearch.version=1.4.0-SNAPSHOT - name: Pull and Run Docker for security tests run: | version=1.1.0-SNAPSHOT @@ -102,7 +102,7 @@ jobs: - name: Checkout Branch uses: actions/checkout@v2 - name: Build with Gradle - run: ./gradlew.bat build -D"opensearch.version=1.3.0-SNAPSHOT" -x integTest -x jacocoTestReport + run: ./gradlew.bat build -D"opensearch.version=1.4.0-SNAPSHOT" -x integTest -x jacocoTestReport env: _JAVA_OPTIONS: -Xmx4096M - name: Create Artifact Path @@ -130,7 +130,7 @@ jobs: - name: Checkout Branch uses: actions/checkout@v2 - name: Build with Gradle - run: ./gradlew build -Dopensearch.version=1.3.0-SNAPSHOT -x integTest -x jacocoTestReport + run: ./gradlew build -Dopensearch.version=1.4.0-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 3a9b24f6..82f2cf5d 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.0-SNAPSHOT + run: ./gradlew integTest -PnumNodes=5 -Dopensearch.version=1.4.0-SNAPSHOT - name: Upload failed logs uses: actions/upload-artifact@v2 if: failure() diff --git a/build.gradle b/build.gradle index 151a36f6..12bd585e 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ buildscript { distribution = 'oss-zip' opensearch_group = "org.opensearch" isSnapshot = "true" == System.getProperty("build.snapshot", "true") - opensearch_version = System.getProperty("opensearch.version", "1.3.0-SNAPSHOT") + opensearch_version = System.getProperty("opensearch.version", "1.4.0-SNAPSHOT") // 1.0.0 -> 1.0.0.0, and 1.0.0-SNAPSHOT -> 1.0.0.0-SNAPSHOT opensearch_build = opensearch_version.replaceAll(/(\.\d)([^\d]*)$/, '$1.0$2') common_utils_version = System.getProperty("common_utils.version", opensearch_build)