Skip to content

Commit

Permalink
fix(build-test-ci)
Browse files Browse the repository at this point in the history
  • Loading branch information
parkererickson-tg committed Jun 3, 2024
1 parent e2a1566 commit f923ef7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-test-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
docker run -it -v $(pwd)/configs/:/code/configs -e GOOGLE_APPLICATION_CREDENTIALS=/code/configs/GCP_CREDS.json -e WANDB_API_KEY=${{ secrets.WANDB_API_KEY }} -e PR_NUMBER="DailyRegression" --name nlqs-tests -d nlqs/tests:0.1
- name: Execute PR Tests
if: ${{ github.event_name }} == 'pull_request'
if: github.event_name == 'pull_request'
run: |
docker exec nlqs-tests bash -c "./run_tests.sh ${{ github.event.label.name }} all"
status=$?
Expand All @@ -87,7 +87,7 @@ jobs:
echo "REPORT_URL=${url}" >> $GITHUB_ENV
- name: Execute Regress Tests
if: ${{ github.event_name == 'schedule' }}
if: github.event_name == 'schedule'
run: |
docker exec nlqs-tests bash -c "./run_tests.sh all all"
status=$?
Expand Down

0 comments on commit f923ef7

Please sign in to comment.