This repository has been archived on 2024-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
smartchai/.gitlab-ci.yml

87 lines
1.2 KiB
YAML
Raw Permalink Normal View History

2017-05-01 20:51:19 +00:00
# gitzone standard
image: hosttoday/ht-docker-node:npmci
cache:
paths:
- .yarn/
key: "$CI_BUILD_STAGE"
2017-01-20 22:33:24 +00:00
stages:
2017-10-09 14:43:31 +00:00
- mirror
2017-01-20 22:33:24 +00:00
- test
- release
- trigger
- pages
2017-10-09 14:43:31 +00:00
mirror:
stage: mirror
script:
- npmci git mirror
tags:
- docker
2017-01-20 22:33:24 +00:00
testLEGACY:
stage: test
script:
2017-10-09 14:43:31 +00:00
- npmci node install legacy
- npmci npm install
- npmci npm test
2017-05-01 20:51:19 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2017-01-20 22:33:24 +00:00
tags:
2017-10-09 14:43:31 +00:00
- docker
2017-01-20 22:33:24 +00:00
allow_failure: true
testLTS:
stage: test
script:
2017-10-09 14:43:31 +00:00
- npmci node install lts
- npmci npm install
- npmci npm test
2017-05-01 20:51:19 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2017-01-20 22:33:24 +00:00
tags:
2017-10-09 14:43:31 +00:00
- docker
2017-01-20 22:33:24 +00:00
testSTABLE:
stage: test
script:
2017-10-09 14:43:31 +00:00
- npmci node install stable
- npmci npm install
- npmci npm test
2017-05-01 20:51:19 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2017-01-20 22:33:24 +00:00
tags:
2017-10-09 14:43:31 +00:00
- docker
2017-01-20 22:33:24 +00:00
release:
stage: release
script:
2017-10-09 14:43:31 +00:00
- npmci npm prepare
- npmci npm publish
2017-01-20 22:33:24 +00:00
only:
2017-10-09 14:43:31 +00:00
- tags
2017-01-20 22:33:24 +00:00
tags:
2017-10-09 14:43:31 +00:00
- docker
2017-01-20 22:33:24 +00:00
trigger:
stage: trigger
script:
2017-10-09 14:43:31 +00:00
- npmci trigger
2017-01-20 22:33:24 +00:00
only:
2017-10-09 14:43:31 +00:00
- tags
2017-01-20 22:33:24 +00:00
tags:
2017-10-09 14:43:31 +00:00
- docker
2017-01-20 22:33:24 +00:00
pages:
2017-05-01 20:51:19 +00:00
image: hosttoday/ht-docker-node:npmci
2017-01-20 22:33:24 +00:00
stage: pages
script:
2017-05-01 20:51:19 +00:00
- npmci command yarn global add npmpage
- npmci command npmpage
tags:
- docker
2017-01-20 22:33:24 +00:00
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public