Make skyrooms a bit more robust. Don't autodownload files if our game… #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |