We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 545ffdb commit c621cdcCopy full SHA for c621cdc
.travis.yml
@@ -5,12 +5,20 @@ services:
5
cache:
6
directories:
7
- $GOPATH/pkg/dep
8
-script:
9
-- make verify build build-integration build-e2e test images svcat
10
-deploy:
11
- skip_cleanup: true
12
- provider: script
13
- script: contrib/travis/deploy.sh
14
- on:
15
- repo: kubernetes-incubator/service-catalog
16
- all_branches: true
+stages:
+ - test
+ - name: deploy
+ if: type != pull_request
+jobs:
+ include:
+ # Test
+ - script: make verify build build-integration build-e2e test images svcat
+ # Deploy
17
+ - stage: deploy
18
+ deploy:
19
+ skip_cleanup: true
20
+ provider: script
21
+ script: contrib/travis/deploy.sh
22
+ on:
23
+ repo: kubernetes-incubator/service-catalog
24
+ all_branches: true
0 commit comments