72089f74f3
- Run SDL from main() and place FreeRTOS in separate thread. This fixes macOS support. - Updated GitHub Actions to publish macOS simulator build for testing, updated amd64 to x86_64 for consistent naming.
32 lines
750 B
YAML
32 lines
750 B
YAML
# Disabled because of issue: https://github.com/libsdl-org/setup-sdl/issues/23
|
|
name: Build Simulator
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
types: [ opened, synchronize, reopened ]
|
|
jobs:
|
|
Linux:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
persist-credentials: false
|
|
- name: "Build"
|
|
uses: ./.github/actions/build-simulator
|
|
with:
|
|
os_name: linux
|
|
architecture: x86_64
|
|
macOS:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
persist-credentials: false
|
|
- name: "Build"
|
|
uses: ./.github/actions/build-simulator
|
|
with:
|
|
os_name: macos
|
|
architecture: aarch64
|