diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9218408df..22e2ec32d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,15 +42,16 @@ jobs: os: windows, platform: x86_64, arch: amd64, - runs-on: ["Windows", "self-hosted", "GCP-T4"], + runs-on: windows-latest, compiler: cl, } - { os: windows, platform: aarch64, arch: amd64_arm64, - runs-on: ["Windows", "self-hosted", "GCP-T4"], + runs-on: windows-latest, compiler: cl, + extra-cmake-flags: "-DSLANG_ENABLE_CUDA=0", } - { os: macos, @@ -145,7 +146,8 @@ jobs: -DSLANG_ENABLE_EXAMPLES=OFF \ -DSLANG_ENABLE_RELEASE_LTO=ON \ "-DSLANG_SLANG_LLVM_FLAVOR=$( - [[ "${{matrix.build-slang-llvm}}" = "true" ]] && echo "USE_SYSTEM_LLVM" || echo "DISABLE")" + [[ "${{matrix.build-slang-llvm}}" = "true" ]] && echo "USE_SYSTEM_LLVM" || echo "DISABLE")" \ + ${{matrix.extra-cmake-flags}} cmake --build --preset "${{matrix.config}}" |
