From 3b2cfafaa988b05d2b10187181ab2a2d38de8b2a Mon Sep 17 00:00:00 2001 From: Max Bernstein Date: Mon, 19 Aug 2024 14:05:28 -0400 Subject: [PATCH] Join back jobs at run_unit_tests --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fdde9c07..e46d3128 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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