-
-
Notifications
You must be signed in to change notification settings - Fork 144
292 lines (255 loc) ยท 9.07 KB
/
test-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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
name: Clipboard Tests
on: [push, pull_request]
jobs:
ubuntu-gcc:
strategy:
fail-fast: false
matrix:
os:
- version: 22.04
no_lto: "0"
gcc: [ 11, 12 ]
x11: [ "1", "0" ]
wayland: [ "1", "0" ]
arch:
- os: i386
gcc: i686-linux-gnu
- os: amd64
gcc: x86_64-linux-gnu
runs-on: ubuntu-${{ matrix.os.version }}
steps:
- uses: actions/checkout@v3
- name: Run a script
shell: 'script -q -e -c "bash --noprofile --norc -eo pipefail {0}"'
run: |
NO_X11=1
NO_WAYLAND=1
PACKAGES="g++-${{ matrix.gcc }}-${{ matrix.arch.gcc }}"
if [[ "${{ matrix.arch.gcc }}" == "$(uname --processor)-linux-gnu" ]]; then
PACKAGES="g++-${{ matrix.gcc }}"
fi
if [[ "${{ matrix.x11 }}" == "1" ]]
then
NO_X11=0
PACKAGES="${PACKAGES} libx11-dev libx11-dev:${{ matrix.arch.os }} libgcc-s1:${{ matrix.arch.os }}"
fi
if [[ "${{ matrix.wayland }}" == "1" ]]
then
NO_WAYLAND=0
PACKAGES="${PACKAGES} libwayland-dev libwayland-dev:${{ matrix.arch.os }} libgcc-s1:${{ matrix.arch.os }} wayland-protocols wayland-protocols:${{ matrix.arch.os }}"
fi
sudo dpkg --add-architecture "${{ matrix.arch.os }}"
sudo apt-get update
sudo apt-get upgrade -y
sudo apt-get install -y $PACKAGES xvfb sway xclip wl-clipboard squeekboard libasound-dev liburing-dev
cd build
cmake .. \
"-DCMAKE_CXX_COMPILER=${{ matrix.arch.gcc }}-g++-${{ matrix.gcc }}" \
"-DCMAKE_C_COMPILER=${{ matrix.arch.gcc }}-gcc-${{ matrix.gcc }}" \
"-DNO_X11=${NO_X11}" \
"-DNO_WAYLAND=${NO_WAYLAND}" \
"-DNO_LTO=${{ matrix.os.no_lto }}" \
"-DCMAKE_BUILD_TYPE=Debug"
cmake --build . -j 2
sudo cmake --install .
export CLIPBOARD_TMPDIR=/tmp
export CLIPBOARD_REQUIREX11=${{ matrix.x11 }}
export CLIPBOARD_REQUIREWAYLAND=${{ matrix.wayland }}
export WLR_BACKENDS=headless
export WLR_LIBINPUT_NO_DEVICES=1
export WAYLAND_DISPLAY=wayland-1
export LIBGL_ALWAYS_SOFTWARE=1
export XDG_RUNTIME_DIR=/tmp
sway -d &
sleep 5
squeekboard &
stty rows 80 cols 120 # GHA doesn't provide the right amount by default
xvfb-run bash ../src/tests/suite.sh
find . -name '*.gcda' | xargs gcov-${{ matrix.gcc }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
ubuntu-cross-gcc:
strategy:
fail-fast: false
matrix:
gcc: [ 11, 12 ]
x11: [ "1", "0" ]
wayland: [ "1", "0" ]
#arch: [ "armv7", "aarch64", "riscv64", "s390x", "ppc64le" ]
arch: [ "aarch64", "riscv64", "s390x", "ppc64le" ]
distro: [ "ubuntu22.04" ]
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: uraimo/run-on-arch-action@v2
name: Test Clipboard
with:
arch: ${{ matrix.arch }}
distro: ${{ matrix.distro }}
dockerRunArgs: |
--init
install: |
NO_X11=1
NO_WAYLAND=1
PACKAGES="g++-${{ matrix.gcc }}"
if [[ "${{ matrix.x11 }}" == "1" ]]
then
NO_X11=0
PACKAGES="${PACKAGES} libx11-dev"
fi
if [[ "${{ matrix.wayland }}" == "1" ]]
then
NO_WAYLAND=0
PACKAGES="${PACKAGES} libwayland-dev wayland-protocols"
fi
apt-get update
apt-get upgrade -y
apt-get install -y $PACKAGES xvfb sway xclip cmake wl-clipboard squeekboard sudo pkg-config cmake-data libasound-dev liburing-dev
run: |
NO_X11=1
NO_WAYLAND=1
if [[ "${{ matrix.x11 }}" == "1" ]]
then
NO_X11=0
fi
if [[ "${{ matrix.wayland }}" == "1" ]]
then
NO_WAYLAND=0
fi
cd build
cmake .. \
"-DCMAKE_CXX_COMPILER=g++-${{ matrix.gcc }}" \
"-DCMAKE_C_COMPILER=gcc-${{ matrix.gcc }}" \
"-DNO_X11=${NO_X11}" \
"-DNO_WAYLAND=${NO_WAYLAND}" \
"-DCMAKE_BUILD_TYPE=Debug"
cmake --build . -j 2
cmake --install .
export CLIPBOARD_TMPDIR=/tmp
export CLIPBOARD_REQUIREX11=${{ matrix.x11 }}
export CLIPBOARD_REQUIREWAYLAND=${{ matrix.wayland }}
export WLR_BACKENDS=headless
export WLR_LIBINPUT_NO_DEVICES=1
export WAYLAND_DISPLAY=wayland-1
export LIBGL_ALWAYS_SOFTWARE=1
export XDG_RUNTIME_DIR=/tmp
useradd -m -s /bin/bash user
chown -R user:user /home/user
echo "user ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
sudo -u user -E sway -d &
sleep 5
squeekboard &
stty rows 80 cols 120 # GHA doesn't provide the right amount by default
xvfb-run bash ../src/tests/suite.sh
find . -name '*.gcda' | xargs gcov-${{ matrix.gcc }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
macos-arm64-amd64:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Run a script
run: |
cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug
cmake --build . --config Debug --parallel 2
cmake --install .
export CLIPBOARD_TMPDIR=$TMPDIR
bash ../src/tests/suite.sh
find . -name '*.gcda' | xargs gcov
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
windows-amd64:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Run a script
shell: bash
run: |
cd build
cmake .. -DCMAKE_BUILD_TYPE=Debug
cmake --build . --config Release -j 2
echo $HOME
export TMPDIR=/c/Users/runneradmin/AppData/Local/Temp
cmake --install .
#installs to C:/Program Files (x86)/Clipboard/bin/cb.exe
#add to path
export PATH=$PATH:/c/Program\ Files\ \(x86\)/Clipboard/bin
export CLIPBOARD_TMPDIR=/c/Users/runneradmin/AppData/Local/Temp
bash ../src/tests/suite.sh
freebsd-amd64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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=Debug -DCMAKE_C_COMPILER=clang15 -DCMAKE_CXX_COMPILER=clang++15 -DNO_X11=1 -DNO_COVERAGE=1
cmake --build . -j 2
sudo cmake --install .
export CLIPBOARD_TMPDIR=/tmp
bash ../src/tests/suite.sh
openbsd-amd64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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=Debug -DNO_X11=1 -DNO_COVERAGE=1
cmake --build . -j 2
sudo cmake --install .
export CLIPBOARD_TMPDIR=/tmp
bash ../src/tests/suite.sh
openbsd-arm64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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=Debug -DNO_X11=1 -DNO_COVERAGE=1
cmake --build . -j 2
sudo cmake --install .
export CLIPBOARD_TMPDIR=/tmp
bash ../src/tests/suite.sh
netbsd-amd64:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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 .. -DNO_LTO=1 -DNO_COVERAGE=1 -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER=/usr/pkg/gcc12/bin/g++ -DCMAKE_C_COMPILER=/usr/pkg/gcc12/bin/gcc
cmake --build . -j 2
sudo cmake --install .
export CLIPBOARD_TMPDIR=/tmp
bash ../src/tests/suite.sh