mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
30 lines
668 B
YAML
30 lines
668 B
YAML
|
name: MinGW CI
|
||
|
|
||
|
on:
|
||
|
push
|
||
|
|
||
|
jobs:
|
||
|
build-linux:
|
||
|
name: Build MinGW
|
||
|
runs-on: ubuntu-22.04
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
config:
|
||
|
- target: win32
|
||
|
package: i686-win32
|
||
|
|
||
|
- target: win64
|
||
|
package: x86-64
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v4
|
||
|
|
||
|
- name: Install Dependencies
|
||
|
run: sudo apt update && sudo apt install gcc-mingw-w64-${{ matrix.config.package }} libz-mingw-w64-dev
|
||
|
|
||
|
- name: Build with MinGW ${{ matrix.config.target }}
|
||
|
run: |
|
||
|
export MAKEFLAGS=--jobs=3\ --keep-going
|
||
|
cd Quake && ./build_cross_${{ matrix.config.target }}-sdl2.sh
|