-
Notifications
You must be signed in to change notification settings - Fork 131
68 lines (57 loc) · 1.52 KB
/
c-cpp.yml
File metadata and controls
68 lines (57 loc) · 1.52 KB
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
name: C/C++ CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
strategy:
matrix:
os: [ubuntu-22.04, ubuntu-24.04,
macos-15-intel, macos-26,
windows-2025]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- name: Checkout audacious-plugins
uses: actions/checkout@v6
- name: Checkout audacious
uses: actions/checkout@v6
with:
repository: audacious-media-player/audacious
path: audacious
- name: Install dependencies
uses: ./.github/actions/install-dependencies
with:
os: ${{ matrix.os }}
- name: Configure audacious
uses: ./audacious/.github/actions/run-action
with:
action: 'configure'
os: ${{ matrix.os }}
- name: Build audacious
uses: ./audacious/.github/actions/run-action
with:
action: 'build'
os: ${{ matrix.os }}
- name: Install audacious
uses: ./audacious/.github/actions/run-action
with:
action: 'install'
os: ${{ matrix.os }}
- name: Configure audacious-plugins
uses: ./.github/actions/run-action
with:
action: 'configure'
os: ${{ matrix.os }}
- name: Build audacious-plugins
uses: ./.github/actions/run-action
with:
action: 'build'
os: ${{ matrix.os }}
- name: Install audacious-plugins
uses: ./.github/actions/run-action
with:
action: 'install'
os: ${{ matrix.os }}