npmci/.gitlab-ci.yml

71 lines
993 B
YAML
Raw Normal View History

2016-11-15 12:55:45 +01:00
image: node:latest
2016-05-30 02:28:47 +02:00
stages:
2016-06-05 14:28:45 +02:00
- test
2016-05-30 02:28:47 +02:00
- release
2016-06-02 20:09:28 +02:00
- trigger
- page
2016-06-05 08:19:03 +02:00
2016-05-30 02:28:47 +02:00
2016-06-05 07:24:21 +02:00
before_script:
- npm install npmci -q -g
2016-06-05 07:24:21 +02:00
2016-06-05 08:06:32 +02:00
testLTS:
stage: test
script:
2016-07-18 18:55:34 +02:00
- npmci install lts
- npmci command npm install -g npmts
- npmci test lts
2016-06-05 08:06:32 +02:00
tags:
- docker
testSTABLE:
stage: test
script:
2016-07-18 18:55:34 +02:00
- npmci install stable
- npmci command npm install -g npmts
2016-06-05 08:06:32 +02:00
- npmci test stable
tags:
- docker
testLEGACY:
stage: test
script:
2016-07-18 18:55:34 +02:00
- npmci install legacy
- npmci command npm install -g npmts
- npmci test legacy
2016-06-05 08:06:32 +02:00
tags:
- docker
allow_failure: true
2016-05-30 02:28:47 +02:00
release:
stage: release
script:
2016-05-30 02:35:44 +02:00
- npmci publish
2016-05-30 02:28:47 +02:00
only:
- tags
tags:
2016-06-02 18:39:11 +02:00
- docker
2016-06-02 19:35:01 +02:00
2016-06-02 20:09:28 +02:00
trigger:
stage: trigger
2016-06-02 19:35:01 +02:00
script:
- npmci trigger
only:
- tags
tags:
- docker
pages:
stage: page
script:
2016-09-04 19:49:38 +02:00
- npmci test stable
2016-11-17 23:02:37 +01:00
- npmci command npm install -g -q npmpage
- npmci command npmpage --host gitlab
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public