-
Notifications
You must be signed in to change notification settings - Fork 2
/
disabled.travis.yml
54 lines (48 loc) · 1.23 KB
/
disabled.travis.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
---
# configure deployment and continuous integration at travis-ci.com
arch: arm64
dist: focal
language: cpp
os: linux
jobs:
include:
# Linux_ARM32hf:
- compiler: arm-linux-gnueabihf-g++-9
addons:
apt:
packages:
- g++-9-arm-linux-gnueabihf
script:
- date
- arm-linux-gnueabihf-g++-9 -E -v
- travis_wait 20 ./gradlew assemble --console=plain -Ptarget=Linux_ARM32hf
# Linux_ARM64 double-precision:
- compiler: gcc-10
addons:
apt:
packages:
- g++-10
script:
- date
- aarch64-linux-gnu-g++-10 -E -v
- travis_wait 20 ./gradlew run build --console=plain -Pflavor=Dp -Ptarget=Linux_ARM64
# Linux_ARM64 single-precision:
- compiler: gcc-10
addons:
apt:
packages:
- g++-10
script:
- date
- aarch64-linux-gnu-g++-10 -E -v
- travis_wait 20 ./gradlew run build --console=plain -Pflavor=Sp -Ptarget=Linux_ARM64
addons:
apt:
update: true
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
cache:
directories:
- $HOME/.gradle/caches/
- $HOME/.gradle/wrapper/