From 3ccf711e50fc8ac814739742b3f08bcbf544e91e Mon Sep 17 00:00:00 2001 From: Sagar Upadhyaya Date: Wed, 6 Apr 2022 15:15:36 -0700 Subject: [PATCH] Revert temporary changes done earlier to test JDK 11,17 CI Signed-off-by: Sagar Upadhyaya --- .github/workflows/gradle.yml | 5 +++-- build.gradle | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index ee3385feb..bf3ee3540 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -16,6 +16,7 @@ jobs: java: - 11 - 17 + fail-fast: false runs-on: [ubuntu-latest] name: Building RCA package steps: @@ -53,8 +54,8 @@ jobs: - name: Checkout Performance Analyzer uses: actions/checkout@v2 with: - repository: sgup432/performance-analyzer - ref: jdk_gradle_7_OS2.0 + repository: opensearch-project/performance-analyzer + ref: main path: ./tmp/performance-analyzer - name: Build PA gradle using the new RCA jar working-directory: ./tmp/performance-analyzer diff --git a/build.gradle b/build.gradle index 0208f5095..fc739b076 100644 --- a/build.gradle +++ b/build.gradle @@ -65,8 +65,8 @@ ext { if (isSnapshot) { opensearch_build += "-SNAPSHOT" } - gitPaBranch = 'jdk_gradle_7_OS2.0' - gitPaRepo = "https://github.com/sgup432/performance-analyzer.git" + gitPaBranch = 'main' + gitPaRepo = "https://github.com/opensearch-project/performance-analyzer.git" runGauntletTests = "true" == System.getProperty("run.gauntlet.tests", "false") }