deftype
and defmethod
syntax major changes
#3491
Workflow file for this run
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-clang" | |
cachePrefix: "" | |
# Q4 2023 there will hopefully be native arm64 runners | |
# https://github.com/github/roadmap/issues/528 | |
# build_macos_arm: | |
# name: "🍎 MacOS" | |
# uses: ./.github/workflows/macos-build-arm.yaml | |
# with: | |
# cmakePreset: "Release-macos-clang" | |
# cachePrefix: "" |