File tree Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Expand file tree Collapse file tree 2 files changed +2
-12
lines changed Original file line number Diff line number Diff line change @@ -265,22 +265,12 @@ jobs:
265
265
# Build each combination of OS and release/debug variants
266
266
os : [ ubuntu-20.04 ]
267
267
build-type : [ Release, Debug ]
268
+ # TODO(hugo): Add AArch64 configuration when GitHub AArch64 CI runners are available.
268
269
arch :
269
270
- name : x86_64
270
271
triple : x86_64-linux-android
271
272
emu-options : -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
272
- - name : arm64-v8a
273
- triple : aarch64-linux-android
274
- # Google broke ARM64 emulation on x86_64 hosts. A workaround is to overwrite the qemu machine type.
275
- emu-options : -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none -accel off -qemu -machine virt
276
273
api-level : [ 27, 33 ]
277
- # Please note that:
278
- # - arm64-v8a emulation on a x86_64 host currently is only possible up to API level 27 Oreo
279
- # - armeabi-v7a is only supported up to API level 24
280
- exclude :
281
- - api-level : 33
282
- arch :
283
- name : arm64-v8a
284
274
# Don't abort runners if a single one fails
285
275
fail-fast : false
286
276
runs-on : ${{ matrix.os }}
Original file line number Diff line number Diff line change 1
- #if __clang_major__ < 18
1
+ #if __clang_major__ < 18 || (__clang_major__ == 18 && __clang_minor__ < 1)
2
2
// Skip this test if clang is too old to support it.
3
3
int main (void )
4
4
{
You can’t perform that action at this time.
0 commit comments