From 0fa9abe6261e5c9b4bfe59ff833bc07910b65e81 Mon Sep 17 00:00:00 2001 From: Thomas Jensen Date: Fri, 22 Dec 2023 22:35:52 +0100 Subject: [PATCH] Change order of pipeline steps for coverage aggregation --- .github/workflows/boxes.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/boxes.yml b/.github/workflows/boxes.yml index 38e6dc5e..34b143bb 100644 --- a/.github/workflows/boxes.yml +++ b/.github/workflows/boxes.yml @@ -20,7 +20,7 @@ env: TERM: xterm-color jobs: - build: + build-linux: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -36,12 +36,12 @@ jobs: - name: Run white-box tests run: make utest + - name: Run sunny-day tests + run: make covtest-sunny + - name: Run black-box tests run: make covtest - - name: Run sunny-day tests - run: make test-sunny - - name: Coveralls uses: coverallsapp/github-action@v2 with: @@ -73,12 +73,12 @@ jobs: - name: Run white-box tests run: make utest + - name: Run sunny-day tests + run: make covtest-sunny + - name: Run black-box tests run: make covtest - - name: Run sunny-day tests - run: make test-sunny - - name: Coveralls uses: coverallsapp/github-action@v2 with: @@ -89,7 +89,7 @@ jobs: parallel: true finish: - needs: [build, build-macos] + needs: [build-linux, build-macos] if: ${{ always() }} runs-on: ubuntu-latest steps: