-
Notifications
You must be signed in to change notification settings - Fork 10
60 lines (51 loc) · 1.68 KB
/
build-headless.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
name: Build Headless
on: [push,workflow_dispatch]
jobs:
VCPKG:
name: ${{ matrix.os }}-${{ github.workflow }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-2022]
include:
- os: 'ubuntu-latest'
mono: 'mono'
triplet: 'x64-linux'
exe_ext: ''
build_dir: ninja-headless
- os: 'windows-2022'
mono: ''
triplet: 'x64-win'
exe_ext: '.exe'
build_dir: vs-headless
- os: 'macos-latest'
mono: 'mono'
triplet: 'x64-osx'
exe_ext: ''
build_dir: ninja-headless
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: seanmiddleditch/gha-setup-ninja@master
if: startsWith(matrix.os, 'win')
- uses: lukka/get-cmake@latest
if: startsWith(matrix.os, 'win')
- name: Setup MacOS
if: startsWith(matrix.os, 'macOS')
run: brew install automake autoconf ninja cmake || true
- name: Setup Ubuntu
if: startsWith(matrix.os, 'ubuntu')
run: sudo apt install build-essential gperf ninja-build cmake
- name: Build
shell: bash
run: scripts/build-headless.sh ${{ matrix.triplet }}
- name: Archive artifact
shell: bash
run: tar -cvJf clap-plugins.clap.tar.xz --strip-components 4 builds/${{matrix.build_dir}}/plugins/Release/clap-plugins.clap
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: clap-plugins-${{ matrix.triplet }}.tar.xz
path: clap-plugins.clap.tar.xz