2022-10-10 17:15:55 +00:00
|
|
|
---
|
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2022-10-10 21:03:56 +00:00
|
|
|
push:
|
2022-10-10 17:15:55 +00:00
|
|
|
|
|
|
|
permissions: {}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
linux:
|
|
|
|
name: Linux
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out the repository
|
2022-10-13 09:26:37 +00:00
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
2022-10-10 17:15:55 +00:00
|
|
|
- name: Install GCC 9 and SDL2
|
|
|
|
run: |
|
|
|
|
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
|
2022-10-13 12:01:14 +00:00
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install g++-9 libsdl2-dev
|
2022-10-10 17:15:55 +00:00
|
|
|
- name: Build Stella
|
|
|
|
run: |
|
|
|
|
./configure && make -j2 all
|
|
|
|
|
|
|
|
macos:
|
|
|
|
name: macOS
|
|
|
|
runs-on: macos-latest
|
|
|
|
steps:
|
|
|
|
- name: Check out the repository
|
2022-10-13 09:26:37 +00:00
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
2022-10-10 17:15:55 +00:00
|
|
|
- name: Install SDL2
|
|
|
|
run: |
|
|
|
|
curl https://www.libsdl.org/release/SDL2-2.0.10.tar.gz | tar xzf -
|
|
|
|
mkdir SDL2-2.0.10/build
|
|
|
|
cd SDL2-2.0.10/build
|
|
|
|
../configure && make -j3 && sudo make install
|
|
|
|
- name: Build Stella
|
|
|
|
run: |
|
|
|
|
./configure && make -j3 all
|
2022-10-10 17:58:03 +00:00
|
|
|
|
|
|
|
windows:
|
|
|
|
name: Windows
|
|
|
|
runs-on: windows-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
platform: [x64, Win32]
|
|
|
|
env:
|
|
|
|
Platform: ${{ matrix.platform }}
|
|
|
|
SDL2_version: 2.24.0
|
|
|
|
steps:
|
|
|
|
- name: Check out the repository
|
2022-10-13 09:26:37 +00:00
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
2022-10-10 17:58:03 +00:00
|
|
|
- name: Set up MSBUILD
|
2022-10-13 09:26:37 +00:00
|
|
|
uses: microsoft/setup-msbuild@34cfbaee7f672c76950673338facd8a73f637506
|
2022-10-10 17:58:03 +00:00
|
|
|
- name: Install SDL2
|
|
|
|
shell: cmd
|
|
|
|
run: |
|
|
|
|
curl -o "C:\SDL2-devel.zip" "https://www.libsdl.org/release/SDL2-devel-%SDL2_version%-VC.zip"
|
|
|
|
7z x "C:\SDL2-devel.zip" -o"C:\"
|
|
|
|
xcopy /S "C:\SDL2-%SDL2_version%\include" src\common
|
|
|
|
if %Platform%==x64 xcopy /S "C:\SDL2-%SDL2_version%\lib\x64" src\os\windows
|
|
|
|
if %Platform%==Win32 xcopy /S "C:\SDL2-%SDL2_version%\lib\x86" src\os\windows
|
|
|
|
- name: Build Stella
|
|
|
|
run: |
|
|
|
|
msbuild src\os\windows\Stella.sln
|