From fba52e4039059b6a50c63ac9df3f9bffd750fbc1 Mon Sep 17 00:00:00 2001 From: Jake Hemstad Date: Tue, 30 May 2023 09:56:23 -0500 Subject: [PATCH] Correctly pass per_cuda_matrix into get_groups --- .github/workflows/per_cuda.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/per_cuda.yml b/.github/workflows/per_cuda.yml index 94af878585..e32899d18e 100644 --- a/.github/workflows/per_cuda.yml +++ b/.github/workflows/per_cuda.yml @@ -17,12 +17,14 @@ jobs: uses: actions/checkout@v3 - name: Compute matrix run: | - PER_COMPILER_MATRIX=$(./ci/get_groups.sh ${{inputs.per_compiler_matrix}} compiler) + echo ${{ inputs.per_cuda_matrix }} + PER_COMPILER_MATRIX=$(./ci/get_groups.sh ${{inputs.per_cuda_matrix}} compiler.name) echo "PER_COMPILER_MATRIX=$PER_COMPILER_MATRIX" | tee -a "$GITHUB_OUTPUT" COMPILERS=$(echo $PER_COMPILER_MATRIX | jq -c 'keys') echo "COMPILERS=$COMPILERS" | tee -a "$GITHUB_OUTPUT" per_cuda: + name: ${{ matrix.compiler }} needs: compute_per_compiler_matrix name: CUDA ${{ inputs.cuda_version }} strategy: