-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
45 lines (43 loc) · 842 Bytes
/
.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
language: c
dist: bionic
os:
- linux
compiler:
- clang
- gcc
arch:
- amd64
- arm64
env:
matrix:
- BUILD_ARCH="x86"
- BUILD_ARCH="x86_64"
global:
- MAKEFLAGS="-j 2"
matrix:
include:
# Default xcode image
- os: osx
compiler: clang # Workaround travis setting CC=["clang", "gcc"]
env: BUILD_ARCH="x86_64"
arch: amd64
# Latest xcode image (needs periodic updating)
- os: osx
compiler: clang
osx_image: xcode11.2
env: BUILD_ARCH="x86_64"
arch: amd64
exclude:
- os: osx
compiler: gcc
- os: linux
compiler: clang
arch: amd64
env: BUILD_ARCH="x86" # Only do the gcc x86 build to reduce clutter
- os: linux
env: BUILD_ARCH="x86"
arch: arm64
before_install:
- ci/travis-install.sh
script:
- ci/travis-build.sh