Skip to content

GPU images

GPU images #4

Workflow file for this run

name: GPU images
on:
workflow_dispatch:
inputs:
images:
type: string
required: true
description: 'Distribution(s) to build'
default: '["ubuntu22-gpu-x64", "ubuntu24-gpu-x64"]'
release:
types: [published]
jobs:
build-test-release:
name: Build/Test/Release ${{ matrix.image_id }}
strategy:
fail-fast: false
matrix:
image_id: ${{ fromJSON(github.event.inputs.images || '["ubuntu22-gpu-x64", "ubuntu24-gpu-x64"]') }}
uses: ./.github/workflows/build-test-release.yml
secrets: inherit
with:
image_id: ${{ matrix.image_id }}