From 1ed40e436b1458f250ff9b4f780155e693f8b683 Mon Sep 17 00:00:00 2001 From: Dmitri Smirnov Date: Fri, 13 Oct 2023 17:35:43 -0400 Subject: [PATCH] test: expand test matrix for macros with root6 env --- .github/workflows/build-pull-request.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-pull-request.yml b/.github/workflows/build-pull-request.yml index f4eba245ba..ca0070dff5 100644 --- a/.github/workflows/build-pull-request.yml +++ b/.github/workflows/build-pull-request.yml @@ -67,16 +67,17 @@ jobs: docker run --volumes-from star-test-data ghcr.io/star-bnl/star-sw-${{ env.STARENV }} \ sh -c "set -e; MALLOC_CHECK_=3 $TEST_CMD 2>&1 | tee log; grep 'Run completed' log" - ROOT5_test_doEvents: + test_doEvents: runs-on: ubuntu-latest needs: build strategy: fail-fast: false matrix: test_id: [121, 122] - compiler: [gcc485, gcc11] + starenv: [root5, root6] + compiler: [gcc485] env: - STARENV: root5-${{ matrix.compiler }} + STARENV: ${{ matrix.starenv }}-${{ matrix.compiler }} steps: - name: Download artifact uses: actions/download-artifact@v3 @@ -92,16 +93,17 @@ jobs: docker run --volumes-from star-test-data ghcr.io/star-bnl/star-sw-${{ env.STARENV }} \ sh -c "set -e; $TEST_CMD 2>&1 | tee log; grep ' IO:' log" - ROOT5_test_find_vertex: + test_find_vertex: runs-on: ubuntu-latest needs: build strategy: fail-fast: false matrix: test_id: [102, 121, 122] - compiler: [gcc485, gcc11] + starenv: [root5, root6] + compiler: [gcc485] env: - STARENV: root5-${{ matrix.compiler }} + STARENV: ${{ matrix.starenv }}-${{ matrix.compiler }} steps: - name: Download artifact uses: actions/download-artifact@v3