-
Notifications
You must be signed in to change notification settings - Fork 46
45 lines (38 loc) · 1.2 KB
/
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
name: CI
on:
# Run on pushes to tags, the "master" branch, and PR's
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: ubuntu-latest
container:
image: debian:latest
steps:
# Must install git before checking out the repo otherwise github doesn't fetch the .git directory.
- name: Install dependencies
run: |
apt update
apt install --yes build-essential git libjpeg-dev libsdl2-dev libcurl4-openssl-dev libpng-dev libfreetype-dev libvorbis-dev
- name: Fetch repository
uses: actions/[email protected]
with:
# make the .git directory available so `git describe` works
fetch-depth: '0'
# currently there aren't any relevant tags, lets ignore the 2014 one
fetch-tags: 'false'
- name: Compile DP
run: |
# prevent git complaining about dubious ownership
chown -R root:root .
# fetch refs so `git describe` works
git fetch --all --no-tags
make sdl-release
- name: Upload Linux artifacts
uses: actions/upload-artifact@v4
with:
name: Linux
path: |
darkplaces-sdl