forked from WebAssembly/wabt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
85 lines (81 loc) · 2.57 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
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
env: WABT_DEPLOY=clang-release
- 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
env: WABT_DEPLOY=clang-release
# 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
before_deploy:
- scripts/travis-before-deploy.sh
deploy:
provider: releases
api_key:
secure: UTs36nT7zk1E5cmv4PmsrLbfpQoCJmkQ1upBvyiUl7F2GtPpd7bn/lxN9+e6xroW3vvFTD0MAx/ylqqKHISMhUlRj3vSRW9M1JO/EKj3jQ8kqr92Nz9On5QcGJ8usMMuzq4rXW/t32XIFci25RlFTBxAVXaQq6cVbvjGzvGfvJ6V6vTtho6Pjgj2HCq3K38TYMwA6/+NiP30bV2OkYKjTRx6RCFkYUhKallr0t035GT30bgW7Zz5roLlXUXMiCt8TqY5MCcFYmKukYpLF/tp+B5MUXR0rFFoTsafOc7hWCIi9SdngkwlUFW2tbc9CD0MtNEIUpF+Pf+siXo2RKqfg9A4pdHyHTx1PIOqyDTGcMLHBrs8bsQAoO4PJy6V0WLA1PwQDajXzGfFC3O7Wg/ljOpUumaHCt8yl3/aFu0LZu1NOCZnTpu/kLMXiB1osbSPuYqO+v2j8qgS6xDWf183d9cBzqlep+Wnk2Pgoq1PX2lO08QfxJjW6o3dJkZ/4icpT8hHb4ymcIr3VI9Pl+5Gg1JiMZooZeGV/XMXDAaaO2SNELOK4Dz9eBy4d4ffgaNPZkmNIJZLEx8nISDCU+u2VLcC5FHsCT8VyjcG9JdAXwOmlv2auxhyU87buteJvsJFDavfnc4BEgHPM1xR9PVJzY3IXAOAwAXUZQPWxSKwEgQ=
file: wabt-$TRAVIS_TAG-*.tar.gz*
file_glob: true
skip_cleanup: true
on:
tags: true
condition: -n ${WABT_DEPLOY}