mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2024-11-21 19:41:36 +00:00
6f62f2806a
OpenGL2: Fix sun rays being affected by the viewport size OpenGL2: Fix merged lightmap hacks to have real lightmap index OpenGL2: Fix using merged lightmaps with tcGen environment OpenGL2: Fix hack for tcMod transform on merged lightmaps OpenGL2: Fix flares behind mirror being visible Fix running on Windows XP Fix GitHub Actions CI deprecation warnings OpenGL2: Don't mix drawing to default framebuffer and FBO
49 lines
1 KiB
YAML
49 lines
1 KiB
YAML
name: Build
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
linux:
|
|
name: Linux
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Install Dependencies
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install libsdl2-dev
|
|
- name: Compile
|
|
run: make release -C engine
|
|
env:
|
|
ARCHIVE: 1
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Linux
|
|
path: engine/build/*.zip
|
|
windows:
|
|
name: Windows
|
|
runs-on: windows-2019
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Compile
|
|
run: |
|
|
choco install zip
|
|
make release -C engine
|
|
env:
|
|
ARCHIVE: 1
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: Windows
|
|
path: engine/build/*.zip
|
|
macos:
|
|
name: macOS
|
|
runs-on: macos-11
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Compile
|
|
run: make release -C engine
|
|
env:
|
|
ARCHIVE: 1
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: macOS
|
|
path: engine/build/*.zip
|