macos: don't assume that all macOS major versions are simple numeric values #5108
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: Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
merge_group: {} | |
jobs: | |
# Windows | |
build_windows_clang: | |
name: "🖥️ Windows" | |
uses: ./.github/workflows/windows-build-clang.yaml | |
with: | |
cmakePreset: "Release-windows-clang" | |
cachePrefix: "" | |
secrets: inherit | |
build_windows_msvc: | |
name: "🖥️ Windows" | |
uses: ./.github/workflows/windows-build-msvc.yaml | |
with: | |
cmakePreset: "Release-windows-msvc" | |
cachePrefix: "" | |
secrets: inherit | |
# Linux | |
build_linux_clang: | |
name: "🐧 Linux" | |
uses: ./.github/workflows/linux-build-clang.yaml | |
with: | |
cmakePreset: "Release-linux-clang-asan" | |
cachePrefix: "" | |
secrets: inherit | |
build_linux_gcc: | |
name: "🐧 Linux" | |
uses: ./.github/workflows/linux-build-gcc.yaml | |
with: | |
cmakePreset: "Release-linux-gcc" | |
cachePrefix: "" | |
secrets: inherit | |
# MacOS | |
build_macos_intel: | |
name: "🍎 MacOS" | |
uses: ./.github/workflows/macos-build.yaml | |
with: | |
cmakePreset: "Release-macos-x86_64-clang" | |
cachePrefix: "" | |
build_macos_arm: | |
name: "🍎 MacOS" | |
uses: ./.github/workflows/macos-build-arm.yaml | |
with: | |
cmakePreset: "Release-macos-x86_64-clang" | |
cachePrefix: "" |