Skip to content

Add workflow to compile for HIP #130

Add workflow to compile for HIP

Add workflow to compile for HIP #130

Workflow file for this run

name: CMake
on:
push:
pull_request:
branches: [ "main" ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Debug
jobs:
build-cuda:
uses: ./.github/workflows/cmake-run-cuda.yml
with:
cuda-version: "12.8.0"
build-cuda-12-6:
needs: build-cuda
uses: ./.github/workflows/cmake-run-cuda.yml
with:
cuda-version: "12.6.0"
build-cuda-12-5:
needs: build-cuda
uses: ./.github/workflows/cmake-run-cuda.yml
with:
cuda-version: "12.5.0"
build-hip-6-3-0:
needs: build-cuda # Only attempt HIP after CUDA was succesfull
uses: ./.github/workflows/cmake-run-hip.yml

Check failure on line 32 in .github/workflows/cmake.yml

View workflow run for this annotation

GitHub Actions / CMake

Invalid workflow file

The workflow is not valid. .github/workflows/cmake.yml (Line: 32, Col: 11): Input cuda-version is required, but not provided while calling. .github/workflows/cmake.yml (Line: 34, Col: 16): Invalid input, version is not defined in the referenced workflow.
with:
version: "6.3.0"
gpu_arch: "gfx942"