Skip to content

Commit 4a046e9

Browse files
committed
.travis.yml: Prevent deploy after moban job
Fixes #54 Related to #40
1 parent bdc2d1f commit 4a046e9

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

.travis.yml

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,28 @@ cache:
1010
- $HOME/.npm
1111
- $HOME/.cache # includes bowers cache
1212

13+
.disable_global: &disable_global
14+
node_js: false
15+
cache: false
16+
before_install: false
17+
install: false
18+
before_script: false
19+
script: false
20+
after_success: false
21+
before_deploy: false
22+
deploy: false
23+
1324
# env forces jobs to be created from the top level settings
1425
env:
1526
jobs:
1627
include:
17-
- stage: moban
28+
- <<: *disable_global
29+
stage: moban
1830
language: python
1931
python: 3.6
20-
node_js: false
2132
cache: pip
22-
before_install: false
2333
install: pip install moban
24-
before_script: false
2534
script: .ci/check_moban.sh
26-
after_success: false
27-
before_deploy: false
2835

2936
before_install:
3037
- npm config set spin false

0 commit comments

Comments
 (0)