mirror of
https://github.com/open-goal/jak-project
synced 2026-06-09 04:40:19 -04:00
64bcd8c030
This PR does the following: - Designs a mechanism by which arm64 instructions can be encoded and emitted - Dispatch our higher-level instruction emitting calls to either x86 or arm64 instructions depending on what the compiler is set to (defaults to x86) - Bare minimum scaffolding to get the arm64 instructions successfully executing atleast on apple silicon - Implement enough instructions to get the codetester test suite passing on arm
63 lines
1.3 KiB
YAML
63 lines
1.3 KiB
YAML
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: ""
|
|
secrets: inherit
|
|
|
|
build_macos_arm:
|
|
name: "🍎 MacOS"
|
|
uses: ./.github/workflows/macos-build-arm.yaml
|
|
with:
|
|
cmakePreset: "Release-macos-arm64-clang"
|
|
cachePrefix: ""
|
|
secrets: inherit
|