-
-
Notifications
You must be signed in to change notification settings - Fork 144
272 lines (233 loc) ยท 8.42 KB
/
build-clipboard.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
name: Clipboard Builds
on: [ push, pull_request ]
jobs:
linux_x11wl:
strategy:
fail-fast: false
matrix:
gcc: [ 12 ]
arch:
#- os: i386
# gcc: i686-linux-gnu
# needs_ports: "0"
- os: amd64
gcc: x86_64-linux-gnu
needs_ports: "0"
- os: arm64
gcc: aarch64-linux-gnu
needs_ports: "1"
- os: riscv64
gcc: riscv64-linux-gnu
needs_ports: "1"
- os: armhf
gcc: arm-linux-gnueabihf
needs_ports: "1"
- os: ppc64el
gcc: powerpc64le-linux-gnu
needs_ports: "1"
#- os: s390x
# gcc: s390x-linux-gnu
# needs_ports: "1"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
#- uses: lhotari/action-upterm@v1
- name: Run a script
run: |
GPP_PACKAGE="g++-${{ matrix.gcc }}-${{ matrix.arch.gcc }}"
if [[ "${{ matrix.arch.gcc }}" == "$(uname --processor)-linux-gnu" ]]; then
GPP_PACKAGE="g++-${{ matrix.gcc }}"
fi
if [[ "${{ matrix.arch.needs_ports }}" == "1" ]]; then
sudo echo "deb [arch=${{ matrix.arch.os }}] http://ports.ubuntu.com/ $(lsb_release -sc) main multiverse universe" | sudo tee -a /etc/apt/sources.list
sudo echo "deb [arch=${{ matrix.arch.os }}] http://ports.ubuntu.com/ $(lsb_release -sc)-updates main multiverse universe" | sudo tee -a /etc/apt/sources.list
sudo echo "deb [arch=${{ matrix.arch.os }}] http://ports.ubuntu.com/ $(lsb_release -sc)-security main multiverse universe" | sudo tee -a /etc/apt/sources.list
sudo echo "deb [arch=${{ matrix.arch.os }}] http://ports.ubuntu.com/ $(lsb_release -sc)-backports main multiverse universe" | sudo tee -a /etc/apt/sources.list
echo "remove archive ubuntu for ports";
sudo sed -ibak '/\/archive.ubuntu.com/d' /etc/apt/sources.list;
fi
# This limits apt to only looking or amd64 and i386 from Azure, see https://github.com/actions/virtual-environments/issues/1961
sudo sed -i'' -E 's/^deb http:\/\/(azure.archive|security).ubuntu.com/deb [arch=amd64,i386] http:\/\/\1.ubuntu.com/' /etc/apt/sources.list
sudo apt update || true
sudo dpkg --add-architecture "${{ matrix.arch.os }}"
sudo apt update || true
sudo apt install -y "${GPP_PACKAGE}"
sudo apt install -y "libx11-dev:${{ matrix.arch.os }}"
sudo apt install -y "libwayland-dev:${{ matrix.arch.os }}"
sudo apt install -y "wayland-protocols:${{ matrix.arch.os }}"
sudo apt install -y "libasound-dev:${{ matrix.arch.os }}"
sudo apt install -y "liburing-dev:${{ matrix.arch.os }}"
sudo apt install -y "libssl-dev:${{ matrix.arch.os }}"
sudo apt install -y "openssl:${{ matrix.arch.os }}"
cd build
cmake .. \
"-DCMAKE_CXX_COMPILER=${{ matrix.arch.gcc }}-g++-${{ matrix.gcc }}" \
"-DCMAKE_C_COMPILER=${{ matrix.arch.gcc }}-gcc-${{ matrix.gcc }}" \
"-DCMAKE_BUILD_TYPE=Release" \
"-DOPENSSL_CRYPTO_LIBRARY=/usr/lib/${{ matrix.arch.gcc }}/libcrypto.so" \
cmake --build . -j 4
- uses: actions/upload-artifact@v4
with:
name: clipboard-linux-${{ matrix.arch.os }}
path: build/output
flatpak-amd64:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Run a script
run: |
sudo apt update
sudo apt install -y flatpak-builder flatpak
flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install --user --noninteractive flathub org.freedesktop.Platform//22.08 org.freedesktop.Sdk//22.08
flatpak-builder --repo=repo --force-clean build-dir app.getclipboard.Clipboard.yml
flatpak build-bundle repo clipboard-flatpak-amd64.flatpak app.getclipboard.Clipboard
- uses: actions/upload-artifact@v4
with:
name: clipboard-flatpak-amd64
path: |
clipboard-flatpak-amd64.flatpak
snap-amd64:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: snapcore/action-build@v1
- uses: actions/upload-artifact@v4
with:
name: clipboard-snap-amd64
path: |
*.snap
macos-arm64:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Run a script
run: |
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build . -j 3
- uses: actions/upload-artifact@v4
with:
name: clipboard-macos-arm64
path: build/output
macos-amd64:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Run a script
run: |
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build . -j 3
- uses: actions/upload-artifact@v4
with:
name: clipboard-macos-amd64
path: build/output
windows-amd64:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Run a script
run: |
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --config Release -j 3
- uses: actions/upload-artifact@v4
with:
name: clipboard-windows-amd64
path: build/output
windows-arm64:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Run a script
run: |
vcpkg install openssl:arm64-windows
$env:PATH = "$env:VCPKG_ROOT;$env:PATH"
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_GENERATOR_PLATFORM=ARM64
cmake --build . --config Release -j 3
- uses: actions/upload-artifact@v4
with:
name: clipboard-windows-arm64
path: build/output
freebsd-amd64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run a script
uses: cross-platform-actions/action@v0.13.0
with:
operating_system: freebsd
architecture: x86-64
version: '13.1'
shell: bash
run: |
sudo pkg install -y cmake llvm15 xorg wayland
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=clang15 -DCMAKE_CXX_COMPILER=clang++15 -DNO_X11=1
cmake --build . -j 2
- uses: actions/upload-artifact@v4
with:
name: clipboard-freebsd-amd64
path: build/output
openbsd-amd64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run a script
uses: cross-platform-actions/action@v0.13.0
with:
operating_system: openbsd
architecture: x86-64
version: '7.2'
shell: bash
run: |
sudo pkg_add cmake
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DNO_X11=1
cmake --build . -j 2
- uses: actions/upload-artifact@v4
with:
name: clipboard-openbsd-amd64
path: build/output
openbsd-arm64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run a script
uses: cross-platform-actions/action@v0.13.0
with:
operating_system: openbsd
architecture: arm64
version: '7.2'
shell: bash
run: |
sudo pkg_add cmake
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DNO_X11=1
cmake --build . -j 2
- uses: actions/upload-artifact@v4
with:
name: clipboard-openbsd-arm64
path: build/output
netbsd-amd64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run a script
uses: cross-platform-actions/action@v0.13.0
with:
operating_system: netbsd
architecture: x86_64
version: '9.2'
shell: bash
run: |
sudo pkgin -y install cmake gcc12
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_COMPILER=/usr/pkg/gcc12/bin/gcc -DCMAKE_CXX_COMPILER=/usr/pkg/gcc12/bin/g++
cmake --build . -j 2
- uses: actions/upload-artifact@v4
with:
name: clipboard-netbsd-amd64
path: build/output