-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
37 lines (37 loc) · 749 Bytes
/
.travis.yml
File metadata and controls
37 lines (37 loc) · 749 Bytes
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
matrix:
include:
- os: linux
language: cpp
compiler: gcc
dist: xenial
cache: ccache
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-xenial-8
packages:
- gcc
- cmake
- ninja-build
- clang-8
- llvm-8
- llvm-8-dev
- bison
- os: osx
compiler: clang
language: cpp
osx_image: xcode10.1
cache: ccache
install:
- brew update-reset
- brew install llvm@8 ninja ccache
before_script:
- ulimit -c unlimited
- ccache -s -z
script:
- mkdir build && cd build
- cmake -G Ninja ..
- ninja
after_script:
- ccache -s