From 75a9162a92a95c91a04a884646087ed5fbbe7905 Mon Sep 17 00:00:00 2001 From: Jake Hemstad Date: Tue, 30 May 2023 07:39:53 -0500 Subject: [PATCH] Add job to per_cuda workflow. --- .github/workflows/per_cuda.yml | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/.github/workflows/per_cuda.yml b/.github/workflows/per_cuda.yml index 0e99ec2bec..f12c9a6afa 100644 --- a/.github/workflows/per_cuda.yml +++ b/.github/workflows/per_cuda.yml @@ -5,12 +5,10 @@ on: inputs: per_cuda_matrix: {type: string, required: true} -test-repo-per-cuda-ver: - uses: ./.github/workflows/test-repo-per-compiler.yml - strategy: - matrix: ${{ fromJSON(inputs.cuda_vers) }} - with: - repo: ${{ inputs.repo }} - cxx_vers: ${{ inputs.cxx_vers }} - cuda_ver: ${{ matrix.cuda_ver }} - compilers: ${{ inputs.compilers }} \ No newline at end of file + +jobs: + per_cuda: + run: | + echo "per_cuda_matrix: ${{ inputs.per_cuda_matrix }}" + +