|
1 | 1 | language: node_js
|
2 | 2 | node_js:
|
3 |
| -- 5.5.0 |
| 3 | + - 5.5.0 |
| 4 | +before_script: |
| 5 | + - npm install -g bower |
| 6 | + - bower install |
4 | 7 | install:
|
5 |
| -- bower install |
6 |
| -- npm install |
| 8 | + - npm install |
7 | 9 | script:
|
8 |
| -- webpack --bail --progress --build --tc |
| 10 | + - webpack --bail --progress --build --tc |
9 | 11 | sudo: false
|
10 | 12 | deploy:
|
11 |
| -- provider: s3 |
12 |
| - cache_control: private, no-store, no-cache, must-revalidate, max-age=0 |
13 |
| - detect_encoding: true |
14 |
| - access_key_id: $AWS_KEY |
15 |
| - secret_access_key: $AWS_SECRET |
16 |
| - bucket: app.topcoder-dev.com |
17 |
| - local_dir: dist |
18 |
| - on: |
19 |
| - branch: SUP-3018-webpack-take-two |
20 |
| -- provider: s3 |
21 |
| - cache_control: private, no-store, no-cache, must-revalidate, max-age=0 |
22 |
| - detect_encoding: true |
23 |
| - access_key_id: $QA_AWS_KEY |
24 |
| - secret_access_key: $QA_AWS_SECRET |
25 |
| - bucket: app.topcoder-qa.com |
26 |
| - local_dir: dist |
27 |
| - on: |
28 |
| - branch: qa |
29 |
| -- provider: s3 |
30 |
| - cache_control: private, no-store, no-cache, must-revalidate, max-age=0 |
31 |
| - access_key_id: $MASTER_AWS_KEY |
32 |
| - secret_access_key: $MASTER_AWS_SECRET |
33 |
| - bucket: app.topcoder.com |
34 |
| - local_dir: dist |
35 |
| - on: |
36 |
| - branch: master |
| 13 | + - provider: s3 |
| 14 | + cache_control: private, no-store, no-cache, must-revalidate, max-age=0 |
| 15 | + detect_encoding: true |
| 16 | + access_key_id: $AWS_KEY |
| 17 | + secret_access_key: $AWS_SECRET |
| 18 | + bucket: app.topcoder-dev.com |
| 19 | + local_dir: dist |
| 20 | + on: |
| 21 | + branch: SUP-3018-webpack-take-two |
| 22 | + - provider: s3 |
| 23 | + cache_control: private, no-store, no-cache, must-revalidate, max-age=0 |
| 24 | + detect_encoding: true |
| 25 | + access_key_id: $QA_AWS_KEY |
| 26 | + secret_access_key: $QA_AWS_SECRET |
| 27 | + bucket: app.topcoder-qa.com |
| 28 | + local_dir: dist |
| 29 | + on: |
| 30 | + branch: qa |
| 31 | + - provider: s3 |
| 32 | + cache_control: private, no-store, no-cache, must-revalidate, max-age=0 |
| 33 | + access_key_id: $MASTER_AWS_KEY |
| 34 | + secret_access_key: $MASTER_AWS_SECRET |
| 35 | + bucket: app.topcoder.com |
| 36 | + local_dir: dist |
| 37 | + on: |
| 38 | + branch: master |
37 | 39 | env:
|
38 | 40 | matrix:
|
39 | 41 | - CXX=g++-4.8
|
|
0 commit comments