- Lots of changes for migrating C code to C++ - Improved `Lockable` in several ways like adding `withLock()` (+ tests) - Improved `Semaphore` a bit for improved readability, and also added some tests - Upgrade Linux machine in GitHub Actions so that we can compile with a newer GCC - Simplification of WiFi connection - Updated funding options - (and more)
31 lines
817 B
YAML
31 lines
817 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:
|
|
Build-Simulator-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
|
|
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
|