smartsystem/.gitlab-ci.yml

72 lines
969 B
YAML
Raw Normal View History

2017-05-13 08:34:08 +00:00
# gitzone standard
image: hosttoday/ht-docker-node:npmci
cache:
paths:
- .yarn/
key: "$CI_BUILD_STAGE"
2016-10-06 17:28:00 +00:00
stages:
- test
- release
- trigger
2017-05-13 08:34:08 +00:00
- pages
2016-10-06 17:28:00 +00:00
testLEGACY:
stage: test
script:
- npmci test legacy
2017-05-13 08:34:08 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-10-06 17:28:00 +00:00
tags:
- docker
allow_failure: true
2017-05-13 08:34:08 +00:00
2016-10-06 17:28:00 +00:00
testLTS:
stage: test
script:
- npmci test lts
2017-05-13 08:34:08 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-10-06 17:28:00 +00:00
tags:
- docker
testSTABLE:
stage: test
script:
- npmci test stable
2017-05-13 08:34:08 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-10-06 17:28:00 +00:00
tags:
- docker
2017-05-13 08:34:08 +00:00
2016-10-06 17:28:00 +00:00
release:
stage: release
script:
- npmci publish
only:
- tags
tags:
- docker
2017-05-13 08:34:08 +00:00
2016-10-06 17:28:00 +00:00
trigger:
stage: trigger
script:
- npmci trigger
only:
- tags
tags:
- docker
2017-05-13 08:34:08 +00:00
2016-10-06 17:28:00 +00:00
pages:
2017-05-13 08:34:08 +00:00
image: hosttoday/ht-docker-node:npmci
stage: pages
2016-10-06 17:28:00 +00:00
script:
2017-05-13 08:34:08 +00:00
- npmci command yarn global add npmpage
- npmci command npmpage
tags:
- docker
2016-10-06 17:28:00 +00:00
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public