Skip to content

Commit

Permalink
Join back jobs at run_unit_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tekknolagi committed Aug 19, 2024
1 parent 24535a8 commit 3b2cfaf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ jobs:
run: CC=${{matrix.CC}} CFLAGS="-fsanitize=undefined ${{matrix.USE_STATIC_HEAP}}" ${{matrix.PYTHON}} compiler_tests.py
- name: Run compiler tests with Valgrind
run: CC=${{matrix.CC}} CFLAGS="${{matrix.USE_STATIC_HEAP}}" USE_VALGRIND=1 ${{matrix.PYTHON}} compiler_tests.py
run_unit_tests:
needs: [run_interpreter_unit_tests, run_compiler_unit_tests]
build_docker_image:
runs-on: ubuntu-latest
permissions:
Expand Down Expand Up @@ -98,7 +100,7 @@ jobs:
if: |
github.repository == 'tekknolagi/scrapscript' &&
github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
needs: [run_lint, run_interpreter_unit_tests, run_compiler_unit_tests]
needs: [run_lint, run_unit_tests]
steps:
- uses: actions/checkout@v4
- uses: superfly/flyctl-actions/setup-flyctl@master
Expand Down

0 comments on commit 3b2cfaf

Please sign in to comment.