-
Notifications
You must be signed in to change notification settings - Fork 120
74 lines (63 loc) · 1.88 KB
/
c-cpp.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
name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
strategy:
matrix:
os: ['ubuntu-20.04', 'ubuntu-22.04', 'ubuntu-24.04', 'macos-13', 'windows-2022']
build-system: ['autotools', 'meson']
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout audacious-plugins
uses: actions/checkout@v4
- name: Checkout audacious
uses: actions/checkout@v4
with:
repository: audacious-media-player/audacious
path: audacious
- name: Install dependencies
uses: ./.github/actions/install-dependencies
with:
os: ${{ matrix.os }}
build-system: ${{ matrix.build-system }}
- name: Configure audacious
uses: ./audacious/.github/actions/run-action
with:
action: 'configure'
os: ${{ matrix.os }}
build-system: ${{ matrix.build-system }}
- name: Build audacious
uses: ./audacious/.github/actions/run-action
with:
action: 'build'
os: ${{ matrix.os }}
build-system: ${{ matrix.build-system }}
- name: Install audacious
uses: ./audacious/.github/actions/run-action
with:
action: 'install'
os: ${{ matrix.os }}
build-system: ${{ matrix.build-system }}
- name: Configure audacious-plugins
uses: ./.github/actions/run-action
with:
action: 'configure'
os: ${{ matrix.os }}
build-system: ${{ matrix.build-system }}
- name: Build audacious-plugins
uses: ./.github/actions/run-action
with:
action: 'build'
os: ${{ matrix.os }}
build-system: ${{ matrix.build-system }}
- name: Install audacious-plugins
uses: ./.github/actions/run-action
with:
action: 'install'
os: ${{ matrix.os }}
build-system: ${{ matrix.build-system }}