forked from linux-test-project/ltp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
111 lines (96 loc) · 3.6 KB
/
.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
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
language: c
# BUILD="native": native builds
# BUILD="32": 32-bit builds
# BUILD="cross": cross compile build
# TREE="out": out-of-tree build
# NO INSTALL_PACKAGES variable: build with minimal dependencies
matrix:
include:
### native builds ###
- os: linux
env: BUILD="native" INSTALL_PACKAGES="$BUILD"
compiler: gcc-5
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-5']
- os: linux
env: BUILD="native" TREE="out" INSTALL_PACKAGES="$BUILD"
compiler: gcc-7
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-7']
- os: linux
env: BUILD="native" TREE="out"
compiler: clang-4.0
addons:
apt:
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-trusty-4.0']
packages: ['clang-4.0']
- os: linux
env: BUILD="native" INSTALL_PACKAGES="$BUILD"
compiler: clang-5.0
addons:
apt:
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-trusty-5.0']
packages: ['clang-5.0']
- os: linux
env: BUILD="native"
compiler: clang-3.9
addons:
apt:
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-trusty-3.9']
packages: ['clang-3.9']
### 32-bit builds ###
- os: linux
env: BUILD="32" INSTALL_PACKAGES="$BUILD"
compiler: gcc-4.9
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-4.9', 'gcc-4.9-multilib', 'linux-libc-dev:i386']
- os: linux
env: BUILD="32" TREE="out" INSTALL_PACKAGES="$BUILD"
compiler: gcc-6
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-6', 'gcc-6-multilib', 'linux-libc-dev:i386']
### cross-compile builds ###
- os: linux
env: BUILD="cross" INSTALL_PACKAGES="$BUILD"
compiler: arm-linux-gnueabihf-gcc
addons:
apt:
packages: ['gcc-arm-linux-gnueabihf', 'libc6-dev-armhf-cross']
- os: linux
env: BUILD="cross" TREE="out" INSTALL_PACKAGES="$BUILD"
compiler: aarch64-linux-gnu-gcc
addons:
apt:
packages: ['gcc-aarch64-linux-gnu', 'libc6-dev-arm64-cross']
- os: linux
env: BUILD="cross" TREE="out"
compiler: powerpc64le-linux-gnu-gcc
addons:
apt:
packages: ['gcc-powerpc64le-linux-gnu', 'libc6-dev-ppc64el-cross']
notifications:
email:
secure: "b/xcA/K5OyQvPPnd0PRahTH5LJu8lgz8goGHvhXpHo+ZPsPgTDXNFo5cX9fSOkMuFKeoW8iGl0wOgK2+ptc8mbYDw277K4RFIHRHeV/KIoE1EzjQnEFiL8J0oHCAvDj12o0AXeriTyY9gICXKbR31Br6Zh5eKViDJe2OAGeHeDU="
before_install:
- sudo apt update --option Acquire::Retries=100 --option Acquire::http::Timeout="60"
# installing / removing dependencies
- if [ "$INSTALL_PACKAGES" = "" ]; then
sudo apt remove $(cat .travis.packages_native | grep -v -e 'libc6' -e 'libc6-dev' -e 'linux-libc-dev' -e 'libacl1')
; else
sudo apt install -qq $(cat .travis.packages_native)
; fi
- if [ "$INSTALL_PACKAGES" = "32" ]; then
sudo apt install -qq $(cat .travis.packages_i386)
; fi
- if [ ! "$TREE" ]; then
TREE="in"
; fi
script: ./build.sh -o $TREE -t $BUILD -c $CC