This reverts commit 9ff8c7728d2e539f867446220e1e64279d4acdf8. (#508) #133
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
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 |