mirror of
https://github.com/open-goal/jak-project
synced 2026-09-11 12:35:25 -04:00
de25f39439
Got OpenGOAL building and running natively on Apple Silicon. This is the rest of the port after the smaller arm64 emitter PRs. I was told pushing one big PR was okay. This covers goalc, the runtime, linker, kernel and the GOAL asm. The new paths have native tests. I also found four more emitter bugs while running it. They're in scalar sqrt, 128-bit stores, scalar max and indexed stores above 4 GB. Spent a while cleaning it up so it's easier to read. 4am gotta sleep lol Closes #3841 --------- Co-authored-by: Tyler Wilding <xtvaser@gmail.com>
92 lines
2.5 KiB
YAML
92 lines
2.5 KiB
YAML
name: MacOS Build
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
cmakePreset:
|
|
required: true
|
|
type: string
|
|
cachePrefix:
|
|
required: true
|
|
type: string
|
|
uploadArtifacts:
|
|
required: false
|
|
type: boolean
|
|
default: false
|
|
|
|
jobs:
|
|
build:
|
|
name: ARM
|
|
runs-on: macos-15
|
|
timeout-minutes: 120
|
|
|
|
steps:
|
|
- name: Checkout Repository
|
|
if: ${{ ! inputs.uploadArtifacts }}
|
|
uses: actions/checkout@v7
|
|
|
|
- name: Checkout Repository with Tags
|
|
if: ${{ inputs.uploadArtifacts }}
|
|
uses: actions/checkout@v7
|
|
with:
|
|
fetch-depth: 0
|
|
fetch-tags: true
|
|
|
|
- name: Install Package Dependencies
|
|
env:
|
|
HOMEBREW_NO_INSTALL_CLEANUP: 1
|
|
HOMEBREW_NO_ANALYTICS: 1
|
|
run: |
|
|
if ! brew install ninja nasm openssl@3 brotli nghttp2; then
|
|
brew update
|
|
brew install ninja nasm openssl@3 brotli nghttp2
|
|
fi
|
|
# keg-only, so give CMake's FindOpenSSL an explicit hint
|
|
echo "OPENSSL_ROOT_DIR=$(brew --prefix openssl@3)" >> $GITHUB_ENV
|
|
|
|
- name: Setup sccache
|
|
uses: hendrikmuhs/ccache-action@v1.2.23
|
|
with:
|
|
variant: sccache
|
|
key: macos-15-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }}-${{ github.sha }}
|
|
restore-keys: macos-15-${{ inputs.cachePrefix }}-${{ inputs.cmakePreset }}
|
|
max-size: 1000M
|
|
|
|
- name: CMake Generation
|
|
env:
|
|
CC: clang
|
|
CXX: clang++
|
|
run: |
|
|
cmake -B build --preset=${{ inputs.cmakePreset }} \
|
|
-DCMAKE_C_COMPILER_LAUNCHER=sccache \
|
|
-DCMAKE_CXX_COMPILER_LAUNCHER=sccache
|
|
|
|
- name: Build Project
|
|
run: cmake --build build --parallel $((`sysctl -n hw.logicalcpu`))
|
|
|
|
- name: List libraries of gk
|
|
run: otool -L ./build/game/gk
|
|
|
|
- name: Run Tests
|
|
run: ./test.sh
|
|
|
|
- name: Prepare artifacts
|
|
if: ${{ inputs.uploadArtifacts }}
|
|
run: |
|
|
strip ./build/goalc/goalc
|
|
strip ./build/decompiler/extractor
|
|
strip ./build/game/gk
|
|
strip ./build/lsp/lsp
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v7
|
|
if: ${{ inputs.uploadArtifacts }}
|
|
with:
|
|
name: opengoal-macos-${{ inputs.cachePrefix }}
|
|
if-no-files-found: error
|
|
path: |
|
|
./build/goalc/goalc
|
|
./build/decompiler/extractor
|
|
./build/game/gk
|
|
./build/lsp/lsp
|