Skip to content

Commit

Permalink
Fix issue where legacy test suite not run on release builds (#340)
Browse files Browse the repository at this point in the history
Fix for the release workflow, similar to the fix already applied to the merge workflow for issue #333
  • Loading branch information
degory authored Sep 20, 2020
1 parent c900537 commit 4f6cd9a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -203,4 +203,4 @@ jobs:
with:
name: test-results
path: |
tests/test-results.md
tests-legacy/test-results.md
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
- name: Make tester executable
run: chmod +x tester/tester

- name: Test compiler
- name: Run .NET tests
run: ./tests/test.sh

- uses: actions/upload-artifact@v2
Expand Down Expand Up @@ -201,15 +201,15 @@ jobs:
- name: Make tester executable
run: chmod +x tester/tester

- name: Test compiler
run: ./tests/test.sh
- name: Run legacy tests
run: ./tests-legacy/test.sh

- uses: actions/upload-artifact@v2
if: ${{ always() }}
with:
name: test-results
path: |
tests/test-results.md
tests-legacy/test-results.md
build_container:
needs: [build_compiler]
Expand Down

0 comments on commit 4f6cd9a

Please sign in to comment.