-
Notifications
You must be signed in to change notification settings - Fork 98
/
.travis.yml
38 lines (31 loc) · 843 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
language: cpp
dist: bionic
jobs:
include:
- os: osx
osx_image: xcode9.2 # OS X 10.12 (oldest Xcode/macOS we support)
- os: osx
osx_image: xcode12 # OS X 10.15.5
- os: linux # see dist above
compiler: clang
- os: linux
compiler: gcc
install:
- echo Lang:$LANG. OS:$TRAVIS_OS_NAME. CC:$CC.
- uname -a
- |
# if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
# brew update
# if [ -z `brew list | grep cmake` ]; then brew install cmake; fi
# brew outdated cmake || brew upgrade cmake
# if [ -z `which ninja` ]; then brew install ninja; fi
# fi
- |
# if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
# sudo apt-get -qq update
# sudo apt-get install -y libc++-dev cmake ninja
# fi
script:
- ./ci/build.sh
notifications:
email: false