From edab2afc5a7538ebec884520b5ae99fefb0a19f9 Mon Sep 17 00:00:00 2001 From: Ava Chow Date: Mon, 24 Jun 2024 17:38:31 -0400 Subject: [PATCH] ci: Always run test Always run test jobs even if sim-builder fails as some sims should always build and we should run the tests for those. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f45c7ffcd..96b2ed369 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -203,6 +203,7 @@ jobs: test-dist: name: Python ${{ matrix.python-version }} ${{ matrix.device }} ${{ matrix.script.name }} runs-on: ubuntu-latest + if: ${{ always() }} needs: [ dist-builder, sim-builder, ledger-app-builder, bitcoind-builder ] strategy: @@ -271,6 +272,7 @@ jobs: test-all: name: Python ${{ matrix.python-version }} ${{ matrix.device }} ${{ matrix.interface }} runs-on: ubuntu-latest + if: ${{ always() }} needs: [ sim-builder, ledger-app-builder, bitcoind-builder ] timeout-minutes: 45