Skip to content

Commit 898c5af

Browse files
authored
Updates performance analyzer version to 1.2 (#71)
Signed-off-by: Sruti Parthiban <[email protected]>
1 parent 4ee6039 commit 898c5af

File tree

4 files changed

+7
-16
lines changed

4 files changed

+7
-16
lines changed

.github/workflows/gradle.yml

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,6 @@ jobs:
1717
uses: actions/setup-java@v1
1818
with:
1919
java-version: 14
20-
# dependencies: OpenSearch
21-
- name: Checkout OpenSearch
22-
uses: actions/checkout@v2
23-
with:
24-
repository: 'opensearch-project/OpenSearch'
25-
path: OpenSearch
26-
ref: '1.1'
27-
- name: Build OpenSearch
28-
working-directory: ./OpenSearch
29-
run: ./gradlew publishToMavenLocal
30-
3120
# Performance Analyzer in ./tmp/performance-analyzer
3221
- name: Checkout Performance Analyzer package
3322
uses: actions/checkout@v2
@@ -46,7 +35,7 @@ jobs:
4635
./gradlew build -Dperformance-analyzer-rca.build=true \
4736
-Dperformance-analyzer-rca.repo="https://github.com/opensearch-project/performance-analyzer-rca.git" \
4837
-Dperformance-analyzer-rca.branch=main \
49-
-Dopensearch.version=1.1.0-SNAPSHOT
38+
-Dopensearch.version=1.2.0-SNAPSHOT
5039
- name: Generate Jacoco coverage report
5140
working-directory: ./tmp/performance-analyzer
5241
run: ./gradlew jacocoTestReport
@@ -57,4 +46,4 @@ jobs:
5746
run: bash <(curl -s https://codecov.io/bash) -f ./build/reports/jacoco/test/jacocoTestReport.xml
5847
- name: Run Integration Tests
5948
working-directory: ./tmp/performance-analyzer
60-
run: ./gradlew integTest -Dtests.enableIT -Dtests.useDockerCluster -Dopensearch.version=1.1.0-SNAPSHOT
49+
run: ./gradlew integTest -Dtests.enableIT -Dtests.useDockerCluster -Dopensearch.version=1.2.0-SNAPSHOT

build.gradle

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
buildscript {
2828

2929
ext {
30-
opensearch_version = System.getProperty("opensearch.version", "1.1.0-SNAPSHOT")
30+
opensearch_version = System.getProperty("opensearch.version", "1.2.0-SNAPSHOT")
3131
}
3232

3333
// Used to resolve build file dependencies
@@ -36,6 +36,7 @@ buildscript {
3636
mavenLocal()
3737
maven { url "https://plugins.gradle.org/m2/" }
3838
jcenter()
39+
maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }
3940
}
4041

4142
dependencies {
@@ -154,6 +155,7 @@ repositories {
154155
mavenLocal()
155156
maven { url "https://plugins.gradle.org/m2/" }
156157
jcenter()
158+
maven { url "https://aws.oss.sonatype.org/content/repositories/snapshots" }
157159
}
158160

159161
configurations {

licenses/performanceanalyzer-rca-1.1.0.0-SNAPSHOT.jar.sha1 renamed to licenses/performanceanalyzer-rca-1.2.0.0-SNAPSHOT.jar.sha1

File renamed without changes.

src/main/resources/plugin-descriptor.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
description=Performance Analyzer Plugin
2828
#
2929
# 'version': plugin's version
30-
version=1.1.0.0
30+
version=1.2.0.0
3131
#
3232
# 'name': the plugin name
3333
name=performance-analyzer
@@ -42,4 +42,4 @@ classname=org.opensearch.performanceanalyzer.PerformanceAnalyzerPlugin
4242
java.version=1.8
4343
#
4444
# 'opensearch.version' version of opensearch compiled against
45-
opensearch.version=1.1.0
45+
opensearch.version=1.2.0

0 commit comments

Comments
 (0)