-
-
Notifications
You must be signed in to change notification settings - Fork 250
402 lines (389 loc) · 11.8 KB
/
ci.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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
env:
PYTHON_VERSION: 3.11
MESON_VERSION: 0.64.0
jobs:
gir:
runs-on: ubuntu-22.04
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '${{ env.PYTHON_VERSION }}'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install \
gobject-introspection \
libdwarf-dev \
libelf-dev \
libgirepository1.0-dev \
libglib2.0-dev \
libjson-glib-dev \
libsoup-3.0-dev \
libsqlite3-dev \
libunwind-dev \
ninja-build
pip install meson==${{ env.MESON_VERSION }}
- name: Build
run: |
meson setup \
-Doptimization=s \
-Dgumpp=enabled \
-Dgumjs=enabled \
build
meson compile -C build
windows:
runs-on: windows-latest
strategy:
matrix:
arch: [amd64_x86, amd64]
fail-fast: false
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '${{ env.PYTHON_VERSION }}'
- name: Install dependencies
run: pip install meson==${{ env.MESON_VERSION }} ninja
- name: Environment
uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.arch }}
- name: Build
run: |
meson setup `
--default-library static `
-Doptimization=s `
-Dgumpp=enabled `
-Dgumjs=enabled `
--force-fallback-for=zlib `
build
meson compile -C build
- name: Test
run: |
Copy-Item build\bindings\gumpp\frida-gumpp-1.0.dll -Destination build\tests\
.\build\tests\gum-tests.exe
macos-x86_64:
runs-on: macos-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '${{ env.PYTHON_VERSION }}'
- name: Install dependencies
run: pip install meson==${{ env.MESON_VERSION }} ninja
- name: Build
run: |
meson setup \
--default-library static \
-Doptimization=s \
-Dgumpp=enabled \
-Dgumjs=enabled \
--force-fallback-for=glib \
build
meson compile -C build
- name: Test
run: ./build/tests/gum-tests
linux-x86:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '${{ env.PYTHON_VERSION }}'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install gcc-multilib lib32stdc++-11-dev
pip install meson==${{ env.MESON_VERSION }}
.github/env/bootstrap.sh linux-x86_64 linux-x86
- name: Build
run: |
export PATH="/tmp/toolchain/bin:$PATH"
meson setup \
--native-file /tmp/native.txt \
--cross-file /tmp/cross.txt \
--default-library static \
--force-fallback-for=glib \
-Doptimization=s \
-Dwerror=true \
-Dgumpp=enabled \
-Dgumjs=enabled \
build
meson compile -C build
- name: Test
run: ./build/tests/gum-tests
linux-x86_64:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '${{ env.PYTHON_VERSION }}'
- name: Install dependencies
run: pip install meson==${{ env.MESON_VERSION }} ninja
- name: Build
run: |
meson setup \
--default-library static \
--force-fallback-for=glib \
-Doptimization=s \
-Dgumpp=enabled \
-Dgumjs=enabled \
build
meson compile -C build
- name: Test
run: ./build/tests/gum-tests
linux-mips:
runs-on: ubuntu-18.04
strategy:
matrix:
arch:
- id: mips
pkg: g++-mips-linux-gnu
- id: mipsel
pkg: g++-mipsel-linux-gnu
- id: mips64
pkg: g++-mips64-linux-gnuabi64
- id: mips64el
pkg: g++-mips64el-linux-gnuabi64
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v3
with:
python-version: '${{ env.PYTHON_VERSION }}'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install ${{ matrix.arch.pkg }}
pip install meson==${{ env.MESON_VERSION }}
.github/env/bootstrap.sh linux-x86_64 linux-${{ matrix.arch.id }}
- name: Build
run: |
export PATH="/tmp/toolchain/bin:$PATH"
meson setup \
--native-file /tmp/native.txt \
--cross-file /tmp/cross.txt \
--default-library static \
-Doptimization=s \
-Dwerror=true \
-Dgumpp=enabled \
-Dgumjs=enabled \
-Dtests=enabled \
build
meson compile -C build
freebsd-arm64:
runs-on: [self-hosted, freebsd, arm64]
steps:
- name: Checkout monorepo
uses: actions/checkout@v3
- name: Install dependencies
run: pip install meson==${{ env.MESON_VERSION }}
- name: Build
run: |
meson setup \
--default-library static \
-Doptimization=s \
-Dgumpp=enabled \
-Dgumjs=enabled \
-Db_lundef=false \
build
meson compile -C build
- name: Test
run: ./build/tests/gum-tests
ios-arm64:
runs-on: macos-latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '${{ env.PYTHON_VERSION }}'
- name: Install dependencies
run: |
pip install meson==${{ env.MESON_VERSION }}
.github/env/bootstrap.sh macos-x86_64 ios-arm64
- name: Build
run: |
export PATH="/tmp/toolchain/bin:$PATH"
meson setup \
--native-file /tmp/native.txt \
--cross-file /tmp/cross.txt \
--default-library static \
-Doptimization=s \
-Dwerror=true \
-Dgumpp=enabled \
-Dgumjs=enabled \
-Dtests=enabled \
build
meson compile -C build
- name: Package
run: tar -C build/tests -czf /tmp/runner.tar.gz gum-tests data/
- name: Test
uses: frida/corellium-action@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
gateway: corellium.frida.re
device: ios-14.8-arm64
upload: /tmp/runner.tar.gz
run: |
cd /usr/local
rm -rf opt/frida
mkdir -p opt/frida
cd opt/frida
tar xf $ASSET_PATH
./gum-tests
android-intel:
runs-on: macos-10.15
strategy:
matrix:
arch: [x86, x86_64]
fail-fast: false
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '${{ env.PYTHON_VERSION }}'
- name: Install dependencies
run: |
pip install meson==${{ env.MESON_VERSION }}
.github/env/bootstrap.sh macos-x86_64 android-${{ matrix.arch }}
- name: Build
run: |
export PATH="/tmp/toolchain/bin:$PATH"
meson setup \
--native-file /tmp/native.txt \
--cross-file /tmp/cross.txt \
--default-library static \
-Doptimization=s \
-Dwerror=true \
-Dgumpp=enabled \
-Dgumjs=enabled \
-Dtests=enabled \
build
meson compile -C build
- name: AVD cache
uses: actions/cache@v2
id: avd-cache
with:
path: |
~/.android/avd/*
~/.android/adb*
key: avd-${{ matrix.arch }}
- name: Create AVD and generate snapshot for caching
if: steps.avd-cache.outputs.cache-hit != 'true'
uses: reactivecircus/android-emulator-runner@v2
with:
arch: ${{ matrix.arch }}
api-level: 27
force-avd-creation: false
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: false
script: echo "Generated AVD snapshot for caching."
- name: Test
uses: reactivecircus/android-emulator-runner@v2
with:
arch: ${{ matrix.arch }}
api-level: 27
force-avd-creation: false
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: |
gtar -C build/tests -czf /tmp/runner.tar.gz gum-tests data/
adb push /tmp/runner.tar.gz /data/local/tmp/
adb shell "su root sh -c 'set -ex; cd /data/local/tmp; tar xf runner.tar.gz; TMPDIR=/data/local/tmp ./gum-tests'"
android-arm:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [arm, arm64]
fail-fast: false
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '${{ env.PYTHON_VERSION }}'
- name: Install dependencies
run: |
pip install meson==${{ env.MESON_VERSION }}
.github/env/bootstrap.sh linux-x86_64 android-${{ matrix.arch }}
- name: Build
run: |
export PATH="/tmp/toolchain/bin:$PATH"
meson setup \
--native-file /tmp/native.txt \
--cross-file /tmp/cross.txt \
--default-library static \
-Doptimization=s \
-Dwerror=true \
-Dgumpp=enabled \
-Dgumjs=enabled \
-Dtests=enabled \
build
meson compile -C build
- name: Package
run: tar -C build/tests -czf /tmp/runner.tar.gz gum-tests data/
- name: Test
uses: frida/corellium-action@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
gateway: corellium.frida.re
device: android-8.1.0-arm64
upload: /tmp/runner.tar.gz
run: |
cd /data/local/tmp
tar xf $ASSET_PATH
./gum-tests
qnx-armeabi:
runs-on: ubuntu-latest
container: fridadotre/qnx:latest
steps:
- name: Check out repo
uses: actions/checkout@v3
- name: Install dependencies
run: |
pip install meson==${{ env.MESON_VERSION }}
.github/env/bootstrap.sh linux-x86_64 qnx-armeabi
- name: Build
run: |
export PATH="/tmp/toolchain/bin:$PATH"
meson setup \
--native-file /tmp/native.txt \
--cross-file /tmp/cross.txt \
--default-library static \
-Doptimization=s \
-Dwerror=true \
-Dgumpp=enabled \
-Dgumjs=enabled \
-Dtests=enabled \
build
meson compile -C build
- name: Test
run: |
tar -C build/tests -cf /tmp/runner.tar gum-tests data/
/opt/sabrelite/run.sh /tmp/runner.tar /opt/frida/gum-tests