2017-06-15 15:52:22 +00:00
|
|
|
# gitzone standard
|
|
|
|
image: hosttoday/ht-docker-node:npmci
|
|
|
|
|
|
|
|
cache:
|
|
|
|
paths:
|
|
|
|
- .yarn/
|
|
|
|
key: "$CI_BUILD_STAGE"
|
2016-05-31 17:16:45 +00:00
|
|
|
|
|
|
|
stages:
|
|
|
|
- test
|
|
|
|
- release
|
2016-11-23 11:38:38 +00:00
|
|
|
- trigger
|
|
|
|
- pages
|
|
|
|
|
|
|
|
testLEGACY:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- npmci test legacy
|
2017-06-15 15:52:22 +00:00
|
|
|
coverage: /\d+.?\d+?\%\s*coverage/
|
2016-11-23 11:38:38 +00:00
|
|
|
tags:
|
|
|
|
- docker
|
|
|
|
allow_failure: true
|
2016-05-31 17:16:45 +00:00
|
|
|
|
|
|
|
testLTS:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- npmci test lts
|
2017-06-15 15:52:22 +00:00
|
|
|
coverage: /\d+.?\d+?\%\s*coverage/
|
2016-05-31 17:16:45 +00:00
|
|
|
tags:
|
|
|
|
- docker
|
|
|
|
|
|
|
|
testSTABLE:
|
|
|
|
stage: test
|
|
|
|
script:
|
|
|
|
- npmci test stable
|
2017-06-15 15:52:22 +00:00
|
|
|
coverage: /\d+.?\d+?\%\s*coverage/
|
2016-05-31 17:16:45 +00:00
|
|
|
tags:
|
|
|
|
- docker
|
2016-06-01 00:35:12 +00:00
|
|
|
|
2016-05-31 17:16:45 +00:00
|
|
|
release:
|
|
|
|
stage: release
|
|
|
|
script:
|
|
|
|
- npmci publish
|
|
|
|
only:
|
|
|
|
- tags
|
|
|
|
tags:
|
|
|
|
- docker
|
2016-11-23 11:38:38 +00:00
|
|
|
|
|
|
|
trigger:
|
|
|
|
stage: trigger
|
|
|
|
script:
|
|
|
|
- npmci trigger
|
|
|
|
only:
|
|
|
|
- tags
|
|
|
|
tags:
|
|
|
|
- docker
|
|
|
|
|
|
|
|
pages:
|
2017-06-15 15:52:22 +00:00
|
|
|
image: hosttoday/ht-docker-node:npmci
|
2016-11-23 11:38:38 +00:00
|
|
|
stage: pages
|
|
|
|
script:
|
2017-06-15 15:52:22 +00:00
|
|
|
- npmci command yarn global add npmpage
|
|
|
|
- npmci command npmpage
|
|
|
|
tags:
|
|
|
|
- docker
|
2016-11-23 11:38:38 +00:00
|
|
|
only:
|
|
|
|
- tags
|
|
|
|
artifacts:
|
|
|
|
expire_in: 1 week
|
|
|
|
paths:
|
|
|
|
- public
|
2017-06-15 15:52:22 +00:00
|
|
|
allow_failure: true
|