Skip to content

Add workflow to compile for HIP #129

Add workflow to compile for HIP

Add workflow to compile for HIP #129

Workflow file for this run

name: CMake

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

View workflow run for this annotation

GitHub Actions / .github/workflows/cmake.yml

Invalid workflow file

(Line: 30, Col: 3): The identifier 'build-hip-6.3.0' is invalid. IDs may only contain alphanumeric characters, '_', and '-'. IDs must start with a letter or '_' and and must be less than 100 characters.
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
with:
version: "6.3.0"
gpu_arch: "gfx942"