forked from opensearch-project/performance-analyzer-rca
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workflow for gauntlet tests and fix spotbug errors (opensearch-pr…
…oject#63) * Add workflow for gauntlet tests and fix spotbug errors Signed-off-by: Sruti Parthiban <partsrut@amazon.com> * Fix failing gauntlet tests Signed-off-by: Sruti Parthiban <partsrut@amazon.com> * Exclude slow/failing tests Signed-off-by: Sruti Parthiban <partsrut@amazon.com> * Update the coverage for gaunlet tests Signed-off-by: Sruti Parthiban <partsrut@amazon.com> * [AdmissionControlRca] Pass healthy context explicitly (opensearch-project#67) Signed-off-by: Mital Awachat <awachatm@amazon.com> Co-authored-by: Mital Awachat <awachatm@amazon.com> Co-authored-by: Mital Awachat <mitalawachat@users.noreply.github.com> Co-authored-by: Mital Awachat <awachatm@amazon.com>
- Loading branch information
1 parent
abdd9df
commit cdcae41
Showing
16 changed files
with
456 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Gauntlet tests Runner | ||
|
||
on: | ||
push: | ||
branches: | ||
- "*" | ||
|
||
pull_request: | ||
branches: | ||
- "*" | ||
|
||
jobs: | ||
build_rca_pkg: | ||
runs-on: [ubuntu-latest] | ||
name: Build and Run Gauntlet tests | ||
steps: | ||
- name: Set up JDK | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 14 | ||
# RCA in ./tmp/performance-analyzer-rca | ||
- name: Checkout RCA | ||
uses: actions/checkout@v2 | ||
with: | ||
path: ./tmp/performance-analyzer-rca | ||
- name: Build RCA and run Gauntlet tests | ||
working-directory: ./tmp/performance-analyzer-rca | ||
run: ./gradlew build -Drun.gauntlet.tests=true -Dopensearch.version=1.1.0-SNAPSHOT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.