Disable __builtin_assume_aligned
for now since it seems to lead to …
#77
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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-action.yml | |
with: | |
cuda-version: "12.2.0" | |
build-cuda-11-7: | |
needs: build-cuda | |
uses: ./.github/workflows/cmake-action.yml | |
with: | |
cuda-version: "11.7.0" | |
build-cuda-12-0: | |
needs: build-cuda | |
uses: ./.github/workflows/cmake-action.yml | |
with: | |
cuda-version: "12.0.0" |