Skip to content

Add support for QUAKE2/Q2R #2

Add support for QUAKE2/Q2R

Add support for QUAKE2/Q2R #2

Workflow file for this run

name: Build for Pull Request
on:
pull_request:
types: [opened, reopened, synchronize, ready_for_review]
jobs:
build:
name: Build
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install Linux dependencies
if: matrix.os == 'ubuntu-latest'
run: ./.github/build/linux/init.sh
- name: Build for Linux
if: matrix.os == 'ubuntu-latest'
run: ./.github/build/linux/release.sh
- name: Setup MSBuild path
if: matrix.os == 'windows-latest'
uses: microsoft/setup-msbuild@v2
- name: Install Windows dependencies
if: matrix.os == 'windows-latest'
run: .\.github\build\windows\init.bat
- name: Build for Windows
if: matrix.os == 'windows-latest'
shell: cmd
run: .\.github\build\windows\release.bat