Implement simulator release package builds (#159)

This commit is contained in:
Ken Van Hoeylandt
2025-01-11 22:44:08 +01:00
committed by GitHub
parent 72a9eb1279
commit ceec04b34c
9 changed files with 84 additions and 18 deletions
+13
View File
@@ -0,0 +1,13 @@
# Disabled because of issue: https://github.com/libsdl-org/setup-sdl/issues/23
name: Build Simulator
on: [push]
jobs:
Build-Simulator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: "Build"
uses: ./.github/actions/build-simulator
with:
os_name: linux
platform_name: amd64
-17
View File
@@ -1,17 +0,0 @@
# Disabled because of issue: https://github.com/libsdl-org/setup-sdl/issues/23
name: Build
on: [push]
jobs:
Build-PC:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
submodules: recursive
- name: Configure Project
uses: threeal/cmake-action@v2.0.0
- name: Prepare Project
run: cmake -S ./ -B build
- name: Build Project
run: cmake --build build