Skip to content

Commit

Permalink
Added MinGW continuous integration workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-lysiuk committed Dec 8, 2023
1 parent 5b56bc4 commit ec7ba3c
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build-mingw.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: MinGW CI

on: [push, pull_request]

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 }}

- name: Build MinGW ${{ matrix.config.target }}
run: |
export MAKEFLAGS=--jobs=3\ --keep-going
cd Quake && ./build_cross_${{ matrix.config.target }}-sdl2.sh

0 comments on commit ec7ba3c

Please sign in to comment.