-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
70 lines (65 loc) · 1.63 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
language: node_js
node_js:
- "6"
script:
- npm test
- ./debugenv.sh
after_success:
- npm run version && npm build
env:
global:
- BLUEMIX_SPACE="dpl" BLUEMIX_ORG="uEnsemble"
matrix:
deploy:
- deploy:
provider: bluemixcloudfoundry
edge: true
manifest: manifest-us-stage.yml
username: $BLUEMIX_USER
password: $BLUEMIX_PASSWORD
organization: $BLUEMIX_ORG
space: $BLUEMIX_SPACE
on:
branch: staging
# - provider: cloudfoundry
# edge: true
# manifest: manifest-us-stage.yml
# username: $BLUEMIX_USER
# password: $BLUEMIX_PASSWORD
# api: "https://api.ng.bluemix.net"
# organization: $BLUEMIX_ORG
# space: $BLUEMIX_SPACE
# on:
# branch: staging
- provider: cloudfoundry
edge: true
manifest: manifest-us-beta.yml
username: $BLUEMIX_USER
password: $BLUEMIX_PASSWORD
api: "https://api.ng.bluemix.net"
organization: $BLUEMIX_ORG
space: $BLUEMIX_SPACE
on:
condition: $TRAVIS_TAG = beta
all_branches: true
#branch: beta #Travis uses that tag name as the branch name when the build is triggered by a tag.
- provider: cloudfoundry
edge: true
manifest: manifest-us-prod.yml
username: $BLUEMIX_USER
password: $BLUEMIX_PASSWORD
api: "https://api.ng.bluemix.net"
organization: $BLUEMIX_ORG
space: $BLUEMIX_SPACE
on:
branch: master
- provider: cloudfoundry
edge: true
manifest: manifest-uk-prod.yml
username: $BLUEMIX_USER
password: $BLUEMIX_PASSWORD
api: "https://api.eu-gb.bluemix.net"
organization: $BLUEMIX_ORG
space: $BLUEMIX_SPACE
on:
branch: master