From c724a4b3118efc2740c308ea40a7b58eb6102cb6 Mon Sep 17 00:00:00 2001 From: Willi Ballenthin Date: Thu, 19 Oct 2023 11:35:42 +0000 Subject: [PATCH] ci: only run BN and Ghidra tests after others complete these are much less likely to fail because they're changed less often, so don't run them until we know other tests also pass. --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 02248c65..f4d040c4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -107,7 +107,7 @@ jobs: env: BN_SERIAL: ${{ secrets.BN_SERIAL }} runs-on: ubuntu-20.04 - needs: [code_style, rule_linter] + needs: [tests] strategy: fail-fast: false matrix: @@ -147,7 +147,7 @@ jobs: ghidra-tests: name: Ghidra tests for ${{ matrix.python-version }} runs-on: ubuntu-20.04 - needs: [code_style, rule_linter] + needs: [tests] strategy: fail-fast: false matrix: @@ -201,4 +201,4 @@ jobs: cat ../output.log exit_code=$(cat ../output.log | grep exit | awk '{print $NF}') exit $exit_code - + \ No newline at end of file