-
Notifications
You must be signed in to change notification settings - Fork 36
146 lines (126 loc) · 3.56 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
---
on:
workflow_dispatch:
push:
paths-ignore:
- 'build/**'
- 'contrib/**'
- 'doc/**'
branches:
- master
pull_request:
paths-ignore:
- 'build/**'
- 'contrib/**'
- 'doc/**'
branches:
- master
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
matrix:
iconv: [enabled, disabled]
steps:
- id: checkout
uses: actions/checkout@v4
- id: cache-ccache
uses: hendrikmuhs/ccache-action@v1
with:
key: linux-iconv=${{ matrix.iconv }}
- name: Install dependencies
run: |
sudo apt install -y --no-install-recommends \
meson \
libmpdclient-dev \
check
- name: Meson Build
uses: BSFishy/meson-build@v1.0.3
with:
action: build
directory: output
setup-options: -Ddocumentation=disabled -Dwrap_mode=nofallback -Dtest=true -Diconv=${{ matrix.iconv }}
- name: Unit Tests
uses: BSFishy/meson-build@v1.0.3
with:
action: test
directory: output
setup-options: -Ddocumentation=disabled -Dwrap_mode=nofallback -Dtest=true -Diconv=${{ matrix.iconv }}
build-macos:
runs-on: macos-latest
steps:
- id: checkout
uses: actions/checkout@v4
- id: cache-ccache
uses: hendrikmuhs/ccache-action@v1
with:
key: macos
- uses: actions/setup-python@v5
- name: Install dependencies
run: |
brew install \
meson ninja \
libmpdclient \
check
- name: Meson Build
uses: BSFishy/meson-build@v1.0.3
with:
action: build
directory: output
setup-options: -Ddocumentation=disabled -Dwrap_mode=nofallback -Dtest=true
- name: Unit Tests
uses: BSFishy/meson-build@v1.0.3
with:
action: test
directory: output
setup-options: -Ddocumentation=disabled -Dwrap_mode=nofallback -Dtest=true
build-windows:
runs-on: windows-latest
steps:
- id: checkout
uses: actions/checkout@v4
- name: Meson Build
uses: BSFishy/meson-build@v1.0.3
with:
action: build
directory: output
setup-options: -Ddocumentation=disabled -Dwrap_mode=forcefallback
meson-version: 0.56.0
- name: Unit Tests
uses: BSFishy/meson-build@v1.0.3
with:
action: test
directory: output
setup-options: -Ddocumentation=disabled -Dwrap_mode=forcefallback
meson-version: 0.56.0
- name: "Upload mpc.exe"
uses: actions/upload-artifact@v4
with:
name: mpc.exe
path: output/mpc.exe
build-windows-msvc:
runs-on: windows-latest
steps:
- id: checkout
uses: actions/checkout@v4
- name: Add VisualStudio command line tools into path
uses: ilammy/msvc-dev-cmd@v1
- name: Meson Build
uses: BSFishy/meson-build@v1.0.3
with:
action: build
directory: output
setup-options: -Ddocumentation=disabled -Dwrap_mode=forcefallback
meson-version: 0.56.0
- name: Unit Tests
uses: BSFishy/meson-build@v1.0.3
with:
action: test
directory: output
setup-options: -Ddocumentation=disabled -Dwrap_mode=forcefallback
meson-version: 0.56.0
- name: "Upload mpc.exe"
uses: actions/upload-artifact@v4
with:
name: mpc.exe
path: output/mpc.exe