Skip to content

Commit 72635b2

Browse files
committed
No --silent
1 parent bb03c80 commit 72635b2

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.travis.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
language: node_js
22

33
node_js:
4-
- 8
4+
- 8
55

66
sudo: false
77

88
cache:
99
directories:
10-
- "node_modules"
10+
- 'node_modules'
1111

1212
os:
1313
- osx
@@ -17,21 +17,21 @@ os:
1717
# https://code.visualstudio.com/docs/extensions/testing-extensions#_running-tests-automatically-on-travis-ci-build-machines
1818
before_install:
1919
- if [ $TRAVIS_OS_NAME == "linux" ]; then
20-
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
21-
sh -e /etc/init.d/xvfb start;
22-
sleep 3;
20+
export CXX="g++-4.9" CC="gcc-4.9" DISPLAY=:99.0;
21+
sh -e /etc/init.d/xvfb start;
22+
sleep 3;
2323
fi
2424

2525
install:
26-
- npm install
27-
- npm run vscode:prepublish
26+
- npm install
27+
- npm run vscode:prepublish
2828

2929
script:
30-
- npm test --silent
30+
- npm test
3131

3232
before_deploy:
33-
- npm install -g vsce
34-
- vsce package
33+
- npm install -g vsce
34+
- vsce package
3535

3636
# Deploy the extension to the Marketplace and GitHub releases (only on tags).
3737
# Note that this only deploys from the master branch, but will still allow
@@ -44,14 +44,14 @@ before_deploy:
4444
# b) Set a environment variable `VS_TOKEN` with the value of your VS Code personal token
4545
# c) Make sure `Display value in build log` is turned OFF!
4646
deploy:
47-
- provider: script # Deploy to VS Code Market Place (only on tags!).
48-
script: vsce publish -p $VS_CODE
49-
skip_cleanup: true
50-
on: # Publish on all builds on master branch.
51-
repo: alanz/vscode-hie-server
52-
branch: master
53-
tags: true
54-
condition: $TRAVIS_OS_NAME = linux
47+
- provider: script # Deploy to VS Code Market Place (only on tags!).
48+
script: vsce publish -p $VS_CODE
49+
skip_cleanup: true
50+
on: # Publish on all builds on master branch.
51+
repo: alanz/vscode-hie-server
52+
branch: master
53+
tags: true
54+
condition: $TRAVIS_OS_NAME = linux
5555
# - provider: releases # Deploy the *.vsix pcakge to GitHub releases.
5656
# file_glob: true
5757
# file: "*.vsix"

0 commit comments

Comments
 (0)