blob: 30a45291fd682c77e3f456dea6b19231e88bad75 (
plain)
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
|
language: c
dist: focal
os:
- linux
- osx
compiler:
- gcc
- clang
addons:
apt:
packages:
- ninja-build
# macos builds are too slow on travis, and now brew update doesn't work without additional configuration
#before_install:
# - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
#
#install:
# - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ninja; fi
script:
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then scripts/initbuild.sh ninja; fi
- if [[ "$TRAVIS_OS_NAME" != "osx" ]]; then scripts/test.sh; fi
- scripts/initbuild.sh make-concurrent
- scripts/test.sh
|