Skip to content

Commit

Permalink
separating regression full and lite scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
amygutierrez committed Apr 21, 2023
1 parent 84b7a65 commit e242ee3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -346,13 +346,13 @@ jobs:
name: Run lite regression test
needs:
- C-PAC
uses: ./.github/workflows/regression_test.yml
uses: ./.github/workflows/regression_test_lite.yml

regtest-full:
name: Run full regression test
needs:
- smoke-tests-participant
uses: ./.github/workflows/regression_test.yml
uses: ./.github/workflows/regression_test_full.yml

finish-build-check:
name: Finish GitHub check
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/regression_test_lite.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: Run Regression Lite Test


on:
pull_request:
types: [ready_for_review]
Expand Down Expand Up @@ -48,11 +49,6 @@ jobs:
# echo "Skipping regression tests"
#fi
- name: Run Full Regression Test
if: ${{ github.event_name }} == "pull_request" && ${{ github.event.pull_request.state }} == "closed" && ${{ github.event.pull_request.merged }} == "true" && ${{ github.event.pull_request.base.ref }} == "main"
run: |
echo "Running full regression test"
- uses: actions/upload-artifact@v3
if: always()
with:
Expand Down

0 comments on commit e242ee3

Please sign in to comment.