Skip to content

Add workflow to compile for HIP #142

Add workflow to compile for HIP

Add workflow to compile for HIP #142

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-13-0:
# needs: build-cuda
# uses: ./.github/workflows/cmake-run-cuda.yml
# with:
# cuda-version: "13.0.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:
#needs: build-cuda # Only attempt HIP after CUDA was succesfull
uses: ./.github/workflows/cmake-run-hip.yml
with:
rocm-version: "6.3.0"
build-hip-6-1:
needs: build-hip
uses: ./.github/workflows/cmake-run-hip.yml
with:
rocm-version: "6.1.0"
build-hip-6-2:
needs: build-hip
uses: ./.github/workflows/cmake-run-hip.yml
with:
rocm-version: "6.2.0"
build-hip-6-4:
needs: build-hip
uses: ./.github/workflows/cmake-run-hip.yml
with:
rocm-version: "6.4.0"