Skip to content

Commit

Permalink
Bumping async search to 1.2.2.0 (#79)
Browse files Browse the repository at this point in the history
* Bumping async search to 1.2.2.0

Signed-off-by: Sarat Vemulapalli <[email protected]>

* Updating workflows to run on all branches

Signed-off-by: Sarat Vemulapalli <[email protected]>
  • Loading branch information
saratvemulapalli authored Dec 15, 2021
1 parent 3999973 commit 0300241
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 13 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,10 @@ name: Test and Build Workflow
on:
pull_request:
branches:
- main
- opendistro-*
- plugin-dev
- "*"
push:
branches:
- main
- opendistro-*
- plugin-dev
- "*"

jobs:
build:
Expand All @@ -28,11 +24,11 @@ jobs:
- name: Checkout Branch
uses: actions/checkout@v2
- name: Build with Gradle
run: ./gradlew build -Dopensearch.version=1.2.1-SNAPSHOT
run: ./gradlew build -Dopensearch.version=1.2.2-SNAPSHOT
- name: Pull and Run Docker for security tests
run: |
version=1.1.0-SNAPSHOT
plugin_version=1.1.0.0-SNAPSHOT
version=1.2.2-SNAPSHOT
plugin_version=1.2.2.0-SNAPSHOT
pwd=`pwd`
echo $pwd
cd ..
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/multi-node-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ env:
on:
pull_request:
branches:
- main
- "*"
push:
branches:
- main
- "*"

jobs:
build:
Expand All @@ -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.2.1-SNAPSHOT
run: ./gradlew integTest -PnumNodes=5 -Dopensearch.version=1.2.2-SNAPSHOT
- name: Upload failed logs
uses: actions/upload-artifact@v2
if: failure()
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.1-SNAPSHOT")
opensearch_version = System.getProperty("opensearch.version", "1.2.2-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)
Expand Down

0 comments on commit 0300241

Please sign in to comment.