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 authored and andrei-drexler committed Jul 17, 2024
1 parent 33ec4a2 commit a237400
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/mingw_ci.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 a237400

Please sign in to comment.