Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge travis matrix and jobs #2375

Merged
merged 1 commit into from
Feb 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: node_js
os:
- linux
- osx
version: ~> 1.0
node_js:
- node # latest node
- 12.4.0 # vscode >= 1.40.0
Expand All @@ -10,10 +11,6 @@ node_js:
git:
depth: 5
submodules: false
matrix:
allow_failures:
- node_js: node
fast_finish: true
env:
global:
- CC_OS_NAME=$(if [[ $TRAVIS_OS_NAME == "osx" ]]; then echo "darwin"; else echo $TRAVIS_OS_NAME; fi)
Expand All @@ -29,6 +26,9 @@ after_success:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT

jobs:
allow_failures:
- node_js: node
fast_finish: true
include:
- stage: wiki pages icons list update
if: repo =~ ^vscode-icons AND branch = master AND type = push
Expand Down Expand Up @@ -58,17 +58,17 @@ jobs:

- stage: docker vsi:latest
if: repo =~ ^vscode-icons AND branch = master AND type = push
sudo: required
language: generic
cache: false
install: false
before_script: false
script: curl -L $DOCKER_TRIGGER_URL | bash -s -- --token $TRAVIS_TOKEN
after_success: false

- stage: docker vsi:tag
if: repo =~ ^vscode-icons AND tag IS present AND type = push
sudo: required
language: generic
cache: false
install: false
before_script: false
script: curl -L $DOCKER_TRIGGER_URL | bash -s -- --token $TRAVIS_TOKEN --tag $TRAVIS_TAG
Expand Down