mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 10:53:17 +00:00
- GitHub actions changed to build simulator on macOS (it's broken, but at least we get a good code portability check for now!) - `Buildscripts/` shell scripts updated to use `/bin/sh` so it works on macOS too - Various includes fixed in various subprojects so the code is more portable
26 lines
731 B
YAML
26 lines
731 B
YAML
# Disabled because of issue: https://github.com/libsdl-org/setup-sdl/issues/23
|
|
name: Build Simulator
|
|
on: [push]
|
|
jobs:
|
|
Build-Simulator-Linux:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: "Build"
|
|
uses: ./.github/actions/build-simulator
|
|
with:
|
|
os_name: linux
|
|
platform_name: amd64
|
|
publish: true
|
|
Build-Simulator-macOS:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: "Build"
|
|
uses: ./.github/actions/build-simulator
|
|
with:
|
|
os_name: macos
|
|
platform_name: aarch64
|
|
# macOS simulator currently fails due to main thread requirement for rendering
|
|
publish: false
|