-
Notifications
You must be signed in to change notification settings - Fork 2
51 lines (44 loc) · 989 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
name: Build Targets
on:
push:
paths-ignore:
- '**.md'
- '.gitignore'
pull_request:
paths-ignore:
- '**.md'
- '.gitignore'
jobs:
build:
if: "!contains(github.event.head_commit.message, '[skip build]')"
name: ${{ matrix.target }}
runs-on: macos-13
strategy:
fail-fast: false
matrix:
target:
- GZDoom
- Raze
- PrBoom-Plus
- quakespasm-exp
steps:
- uses: actions/checkout@v4
- name: Build target
run: |
./build.py --target ${{ matrix.target }}
- name: Generate Xcode project
run: |
./build.py --target ${{ matrix.target }} --xcode
- name: Upload Package
uses: actions/upload-artifact@v4
with:
path: output
name: ${{ matrix.target }}
- name: List Build Directory
if: always()
shell: bash
run: |
git status
ls -lR .
...