Skip to content

Commit ad98d78

Browse files
committed
Add prebuild support.
1 parent 163a776 commit ad98d78

File tree

1 file changed

+22
-11
lines changed

1 file changed

+22
-11
lines changed

.travis.yml

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,29 @@ language: node_js
33
sudo: false
44

55
node_js:
6-
- 8
6+
- node
77

8-
compiler: clang-3.6
8+
os:
9+
- linux
910

10-
env:
11-
- CXX=clang-3.6
11+
matrix:
12+
include:
13+
- os: osx
14+
env: COMPILER=clang++
15+
osx_image: xcode9.4
16+
compiler: clang
17+
- os: linux
18+
env: CXX=clang
19+
compiler: clang
1220

13-
addons:
14-
apt:
15-
sources:
16-
- llvm-toolchain-precise-3.6
17-
- ubuntu-toolchain-r-test
21+
branches:
22+
only:
23+
- master
1824

19-
packages:
20-
- clang-3.6
25+
deploy:
26+
provider: script
27+
script: npm run prebuild && npm run prebuild:upload -u ${PREBUILD_UPLOAD}
28+
skip_cleanup: true
29+
on:
30+
all_branches: true
31+
tags: true

0 commit comments

Comments
 (0)