-
-
Notifications
You must be signed in to change notification settings - Fork 82
30 lines (30 loc) · 787 Bytes
/
build-simulator.yml
File metadata and controls
30 lines (30 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# 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@v4
- name: "Build"
uses: ./.github/actions/build-simulator
with:
os_name: linux
platform_name: amd64
publish: true
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