-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.travis.yml
More file actions
33 lines (26 loc) · 734 Bytes
/
Copy path.travis.yml
File metadata and controls
33 lines (26 loc) · 734 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
language: c
dist: trusty
os:
- linux
# - osx
# TODO I think the only sensible way to get macOS testing to work is if
# we have a script that downloads and extracts a pre-built LLVM, since
# homebrew seems to either build from source, or somehow doesn't have
# llc available (maybe it's just not in your path though?)
compiler:
- gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-6.0
packages:
- clang-6.0
- llvm-6.0-dev
- llvm-6.0-tools
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install llvm@6 --with-toolchain ; fi
script:
- ./test/run.sh
- make unified