-
Notifications
You must be signed in to change notification settings - Fork 0
96 lines (81 loc) · 2.85 KB
/
continuous_integration.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: CI
on: [push, pull_request]
jobs:
build:
name: ${{ matrix.target.name }} - ${{ matrix.toolchain.name }}
runs-on: ${{ matrix.toolchain.os }}
strategy:
fail-fast: false
matrix:
target:
- name: quakespasm
- name: quakespasm-spiked
- name: vkquake
deps:
common: |
mkdir -p build/glslang
cd build/glslang
GLSLANG_PACKAGE=glslang-14.3.0-${RUNNER_OS}.tar.xz
aria2c https://github.com/alexey-lysiuk/quakespasm-cmake/releases/download/ci_deps/${GLSLANG_PACKAGE}
tar -xf ${GLSLANG_PACKAGE}
Linux: sudo apt install libvulkan-dev
macOS: brew install vulkan-headers vulkan-loader
configure: export PATH=$PATH:$(pwd)/build/glslang
- name: ironwail
deps:
Linux: sudo apt install libcurl4-openssl-dev
toolchain:
- name: Linux Clang
os: ubuntu-24.04
# TODO: find the way to avoid duplication of dependencies command
deps: sudo apt update && sudo apt install libflac-dev libmikmod-dev libmpg123-dev libopusfile-dev libsdl2-dev libvorbis-dev libxmp-dev
cmake_args: -DCMAKE_C_COMPILER=clang
- name: Linux GCC
os: ubuntu-24.04
# TODO: find the way to avoid duplication of dependencies command
deps: sudo apt update && sudo apt install libflac-dev libmikmod-dev libmpg123-dev libopusfile-dev libsdl2-dev libvorbis-dev libxmp-dev
# - name: macOS Intel
# os: macos-13
# deps: brew install flac libmikmod libvorbis libxmp mpg123 opusfile sdl2
#
# - name: macOS ARM
# os: macos-14
# deps: brew install flac libmikmod libvorbis libxmp mpg123 opusfile sdl2
#
# - name: MSVC 32-bit
# os: windows-2022
# cmake_args: -A Win32
#
# - name: MSVC 64-bit
# os: windows-2022
steps:
- uses: actions/checkout@v4
- name: Checkout Source Code
shell: bash
run: |
git submodule update --init -- src/${{ matrix.target.name }}
- name: Install Dependencies
shell: bash
run: |
${{ matrix.toolchain.deps }}
${{ matrix.target.deps.common }}
${{ matrix.target.deps[runner.os] }}
- name: Configure
shell: bash
run: |
${{ matrix.target.configure }}
cmake -B build -DQUAKE_TARGET=${{ matrix.target.name }} ${{ matrix.toolchain.cmake_args }} .
- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v2
id: cpu-cores
- name: Build
shell: bash
run: |
export MAKEFLAGS=--keep-going
cmake --build build --config Release --parallel ${{ steps.cpu-cores.outputs.count }}
- name: List Build Directory
if: always()
shell: bash
run: |
git status
ls -lR build