forked from IBM-Blockchain/blockchain-vscode-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
45 lines (41 loc) · 1.14 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
sudo: false
before_install:
- if [ $TRAVIS_OS_NAME == "linux" ]; then
sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test;
sudo apt-get update;
sudo apt-get install gcc-4.9 g++-4.9;
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.9;
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
sh -e /etc/init.d/xvfb start;
sleep 3;
npm install npm@latest -g;
fi
install: |
./.travis/install.sh
jobs:
include:
- script: ./.travis/script.sh
os: osx
env: TASK=unit
language: node_js
node_js:
- "lts/*"
- script: ./.travis/script.sh
os: linux
env: TASK=unit
- script: ./.travis/script.sh
os: linux
env: TASK=systestsNode
- script: ./.travis/script.sh
os: linux
env: TASK=cucumber
- script: ./.travis/script.sh
os: linux
env: TASK=cucumberOther
- stage: deploy
skip_cleanup: true
provider: script
script: ./.travis/deploy.sh
if: branch = master
if: tag IS present
cache: false