smartstream/.gitlab-ci.yml

73 lines
991 B
YAML
Raw Normal View History

2017-03-04 12:53:18 +00:00
# gitzone standard
2017-06-30 16:37:48 +00:00
image: hosttoday/ht-docker-node:npmci
cache:
paths:
- .yarn/
key: "$CI_BUILD_STAGE"
2017-03-04 12:53:18 +00:00
2016-09-25 12:00:16 +00:00
stages:
- test
- release
2017-03-04 12:53:18 +00:00
- trigger
- pages
2016-09-25 12:00:16 +00:00
testLEGACY:
stage: test
script:
- npmci test legacy
2017-03-04 12:53:18 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-09-25 12:00:16 +00:00
tags:
- docker
2017-03-04 12:53:18 +00:00
allow_failure: true
2016-09-25 12:00:16 +00:00
testLTS:
stage: test
script:
- npmci test lts
2017-03-04 12:53:18 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-09-25 12:00:16 +00:00
tags:
- docker
2017-03-04 12:53:18 +00:00
2016-09-25 12:00:16 +00:00
testSTABLE:
stage: test
script:
- npmci test stable
2017-03-04 12:53:18 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-09-25 12:00:16 +00:00
tags:
- docker
2017-03-04 12:53:18 +00:00
2016-09-25 12:00:16 +00:00
release:
stage: release
script:
- npmci publish
only:
- tags
tags:
- docker
2017-03-04 12:53:18 +00:00
trigger:
stage: trigger
script:
- npmci trigger
only:
- tags
tags:
- docker
2016-09-25 12:00:16 +00:00
pages:
2017-06-30 16:37:48 +00:00
image: hosttoday/ht-docker-node:npmci
2017-03-04 12:53:18 +00:00
stage: pages
2016-09-25 12:00:16 +00:00
script:
2017-06-30 16:37:48 +00:00
- npmci command yarn global add npmpage
- npmci command npmpage
tags:
- docker
2016-09-25 12:00:16 +00:00
only:
- tags
artifacts:
expire_in: 1 week
paths:
2017-03-04 12:53:18 +00:00
- public
2017-06-30 16:37:48 +00:00
allow_failure: true