Files
tactility/.github/workflows/build-simulator.yml
T
Ken Van Hoeylandt 72089f74f3 Refactor SDL/FreeRTOS implementation to support macOS simulator properly (#653)
- 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.
2026-09-21 19:52:01 -04:00

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