Skip to content

Commit d6ebebe

Browse files
committed
add travis support
1 parent f23cf3b commit d6ebebe

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.travis.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
sudo: false
2+
3+
os:
4+
- osx
5+
- linux
6+
7+
before_install:
8+
- if [ $TRAVIS_OS_NAME == "linux" ]; then
9+
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
10+
sh -e /etc/init.d/xvfb start;
11+
sleep 3;
12+
fi
13+
14+
install:
15+
- npm install
16+
- npm run vscode:prepublish
17+
18+
script:
19+
- npm test --silent

0 commit comments

Comments
 (0)