mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-11-21 20:47:19 +01:00
3a1317ed47
There was an (innocently intended, I assume!) "make X great again" joke in a previous commit message, and I'd like this not to be the first thing people see on our GitHub project page, so I added some whitespace to the end of this file. Apologies to any that were bothered by that, it was an accident!
58 lines
1.4 KiB
YAML
58 lines
1.4 KiB
YAML
name: Build
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
Build:
|
|
name: ${{ matrix.platform.name }}
|
|
runs-on: ${{ matrix.platform.os }}
|
|
strategy:
|
|
matrix:
|
|
platform:
|
|
- { name: Windows, os: windows-latest }
|
|
- { name: Linux, os: ubuntu-20.04, flags: -GNinja }
|
|
- { name: MacOS, os: macos-latest }
|
|
steps:
|
|
- name: Setup Linux dependencies
|
|
if: runner.os == 'Linux'
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install wayland-protocols \
|
|
pkg-config \
|
|
ninja-build \
|
|
libasound2-dev \
|
|
libdbus-1-dev \
|
|
libegl1-mesa-dev \
|
|
libgl1-mesa-dev \
|
|
libgles2-mesa-dev \
|
|
libglu1-mesa-dev \
|
|
libibus-1.0-dev \
|
|
libpulse-dev \
|
|
libsdl2-2.0-0 \
|
|
libsndio-dev \
|
|
libudev-dev \
|
|
libwayland-dev \
|
|
libwayland-client++0 \
|
|
wayland-scanner++ \
|
|
libwayland-cursor++0 \
|
|
libx11-dev \
|
|
libxcursor-dev \
|
|
libxext-dev \
|
|
libxi-dev \
|
|
libxinerama-dev \
|
|
libxkbcommon-dev \
|
|
libxrandr-dev \
|
|
libxss-dev \
|
|
libxt-dev \
|
|
libxv-dev \
|
|
libxxf86vm-dev \
|
|
libdrm-dev \
|
|
libgbm-dev\
|
|
libpulse-dev
|
|
- uses: actions/checkout@v2
|
|
- name: Configure CMake
|
|
run: cmake -B build ${{ matrix.platform.flags }}
|
|
- name: Build
|
|
run: cmake --build build/
|
|
|