Skip to content

Commit

Permalink
Add 'fake' matrix for a better GHA UI
Browse files Browse the repository at this point in the history
  • Loading branch information
raydouglass committed Jul 18, 2023
1 parent 968910f commit 630bc40
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-test-publish-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,9 @@ jobs:
ARCH: ${{ matrix.ARCH }}
GPU: ${{ matrix.GPU }}
DRIVER: ${{ matrix.DRIVER }}
CUDA_VER: ${{ matrix.CUDA_VER }}
LINUX_VER: ${{ matrix.LINUX_VER }}
PYTHON_VER: ${{ matrix.PYTHON_VER }}
NOTEBOOKS_TAG:
"rapidsai/${{ needs.compute-matrix.outputs.NOTEBOOKS_IMAGE_REPO }}:\
${{ needs.compute-matrix.outputs.NOTEBOOKS_TAG_PREFIX }}\
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/test-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,15 @@ on:
DRIVER:
required: true
type: string
CUDA_VER:
required: true
type: string
LINUX_VER:
required: true
type: string
PYTHON_VER:
required: true
type: string
NOTEBOOKS_TAG:
required: true
type: string
Expand All @@ -41,6 +50,15 @@ permissions:

jobs:
test:
strategy:
matrix:
ARCH: ["${{ inputs.ARCH }}"]
CUDA_VER: ["${{ inputs.CUDA_VER }}"]
LINUX_VER: ["${{ inputs.LINUX_VER }}"]
PYTHON_VER: ["${{ inputs.PYTHON_VER }}"]
GPU: ["${{ inputs.GPU }}"]
DRIVER: ["${{ inputs.DRIVER }}"]
fail-fast: false
runs-on: "linux-${{ inputs.ARCH }}-gpu-${{ inputs.GPU }}-${{ inputs.DRIVER }}-1"
container:
image: ${{ inputs.NOTEBOOKS_TAG }}
Expand Down

0 comments on commit 630bc40

Please sign in to comment.