Skip to content

Commit

Permalink
Update version to 1.0.0.0-beta1 (#11)
Browse files Browse the repository at this point in the history
Signed-off-by: Ashish Agrawal <[email protected]>
  • Loading branch information
lezzago authored Apr 27, 2021
1 parent edaa6db commit 74e8413
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/multi-node-test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,20 @@ jobs:
with:
repository: 'opensearch-project/OpenSearch'
path: OpenSearch
ref: '1.0.0-alpha2'
ref: '1.0.0-beta1'
- name: Build OpenSearch
working-directory: ./OpenSearch
run: ./gradlew publishToMavenLocal -Dbuild.version_qualifier=alpha2 -Dbuild.snapshot=false
run: ./gradlew publishToMavenLocal -Dbuild.version_qualifier=beta1 -Dbuild.snapshot=false
# This step adds dependency, common-utils
- name: Checkout common-utils
uses: actions/checkout@v2
with:
repository: 'opensearch-project/common-utils'
path: common-utils
ref: '1.0.0-beta1'
- name: Build common-utils
working-directory: ./common-utils
run: ./gradlew publishToMavenLocal -Dopensearch.version=1.0.0-alpha2
run: ./gradlew publishToMavenLocal -Dopensearch.version=1.0.0-beta1
# This step uses the checkout Github action: https://github.com/actions/checkout
- name: Checkout Branch
uses: actions/checkout@v2
Expand All @@ -51,4 +52,4 @@ jobs:
with:
java-version: 14
- name: Run integration tests with multi node config
run: ./gradlew integTest -PnumNodes=3 -Dopensearch.version=1.0.0-alpha2
run: ./gradlew integTest -PnumNodes=3 -Dopensearch.version=1.0.0-beta1
11 changes: 6 additions & 5 deletions .github/workflows/test-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,24 @@ jobs:
with:
repository: 'opensearch-project/OpenSearch'
path: OpenSearch
ref: '1.0.0-alpha2'
ref: '1.0.0-beta1'
- name: Build OpenSearch
working-directory: ./OpenSearch
run: ./gradlew publishToMavenLocal -Dbuild.version_qualifier=alpha2 -Dbuild.snapshot=false
run: ./gradlew publishToMavenLocal -Dbuild.version_qualifier=beta1 -Dbuild.snapshot=false

# dependencies: common-utils
- name: Checkout common-utils
uses: actions/checkout@v2
with:
repository: 'opensearch-project/common-utils'
path: common-utils
ref: '1.0.0-beta1'
- name: Build common-utils
working-directory: ./common-utils
run: ./gradlew publishToMavenLocal -Dopensearch.version=1.0.0-alpha2
run: ./gradlew publishToMavenLocal -Dopensearch.version=1.0.0-beta1

- name: Build and run with Gradle
run: ./gradlew build -Dopensearch.version=1.0.0-alpha2
run: ./gradlew build -Dopensearch.version=1.0.0-beta1

# - name: Create Artifact Path
# run: |
Expand All @@ -70,4 +71,4 @@ jobs:
# path: alerting-artifacts
# Publish to local maven
- name: Publish to Maven Local
run: ./gradlew publishToMavenLocal -Dopensearch.version=1.0.0-alpha2
run: ./gradlew publishToMavenLocal -Dopensearch.version=1.0.0-beta1
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ buildscript {
apply from: 'build-tools/repositories.gradle'

ext {
opensearch_version = System.getProperty("opensearch.version", "1.0.0-alpha2")
common_utils_version = '1.0.0.0-alpha2'
opensearch_version = System.getProperty("opensearch.version", "1.0.0-beta1")
common_utils_version = '1.0.0.0-beta1'
kotlin_version = '1.3.72'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ Compatible with OpenSearch 1.0.0
### Refactoring
* Change Kibana UserAgent to OpenSearchDashboards ([#3](https://github.com/opensearch-project/alerting/pull/3))
* Migrate Alerting to OpenSearch ([#1](https://github.com/opensearch-project/alerting/pull/1))
* Update version to alpha2 ([#10](https://github.com/opensearch-project/alerting/pull/10))
* Update version to alpha2 ([#10](https://github.com/opensearch-project/alerting/pull/10))
* Update version to 1.0.0.0-beta1 ([#11](https://github.com/opensearch-project/alerting/pull/11))

0 comments on commit 74e8413

Please sign in to comment.