-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
69 lines (67 loc) · 1.6 KB
/
.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
language: c
before_install:
- eval "${MATRIX_EVAL}"
- scripts/travis-before-install.sh
script:
- scripts/travis-build.sh
- scripts/travis-test.sh
matrix:
include:
- os: linux
dist: trusty
sudo: required
compiler: gcc
- os: linux
dist: trusty
sudo: required
compiler: gcc-i686
- os: linux
dist: trusty
sudo: required
compiler: clang
- os: linux
dist: trusty
sudo: required
compiler: clang
env: SANITIZER=asan
# Disabled because MSAN seems to have stopped working on Travis.
# - os: linux
# dist: trusty
# sudo: required
# compiler: clang
# env: SANITIZER=msan
- os: linux
dist: trusty
sudo: required
compiler: clang
env: SANITIZER=lsan
- os: linux
dist: trusty
sudo: required
compiler: clang
env: SANITIZER=ubsan
- os: osx
compiler: clang
# Build the .js outputs using emcc
- &test-emcc
stage: test
compiler: clang
python: 2.7
node_js: 7
language: node_js
node_js:
- node
sudo: required
services:
- docker
before_install:
- docker run -dit --name emscripten -v $(pwd):/src trzeci/emscripten:sdk-incoming-64bit bash
script:
# run binaryen.js and wasm.js tests before and after building, so we see if the bundled
# version is good too
- docker exec -it emscripten bash scripts/travis-emcc.sh
# Allow failures on the Mac bots. We'd rather not, but they are quite slow.
allow_failures:
- os: osx
compiler: clang
fast_finish: true