npmci/.gitlab-ci.yml

126 lines
2.2 KiB
YAML
Raw Permalink Normal View History

2017-05-25 13:26:06 +02:00
# gitzone standard
2017-09-08 23:30:31 +02:00
image: hosttoday/ht-docker-node:npmci
2016-05-30 02:28:47 +02:00
2017-05-25 13:26:06 +02:00
cache:
paths:
2018-07-16 00:04:24 +02:00
- .npmci_cache/
2017-05-25 13:26:06 +02:00
key: "$CI_BUILD_STAGE"
2016-05-30 02:28:47 +02:00
stages:
2018-04-04 22:25:13 +02:00
- security
2016-06-05 14:28:45 +02:00
- test
2016-05-30 02:28:47 +02:00
- release
- metadata
2016-05-30 02:28:47 +02:00
# ====================
# security stage
# ====================
2017-09-08 23:30:31 +02:00
mirror:
2018-04-04 22:25:13 +02:00
stage: security
2017-09-08 23:30:31 +02:00
script:
- npmci git mirror
tags:
- docker
2018-05-03 20:07:49 +02:00
- notpriv
2017-09-08 23:25:53 +02:00
2018-04-04 22:25:13 +02:00
snyk:
stage: security
script:
2018-09-22 14:36:25 +02:00
- npmci npm prepare
2018-07-16 00:04:24 +02:00
- npmci command npm install -g snyk
- npmci command npm install --ignore-scripts
2018-04-04 22:25:13 +02:00
- npmci command snyk test
tags:
- docker
2018-05-03 20:07:49 +02:00
- notpriv
# ====================
# test stage
# ====================
2017-05-25 13:26:06 +02:00
testLTS:
2016-06-05 08:06:32 +02:00
stage: test
script:
2018-09-22 14:36:25 +02:00
- npmci npm prepare
2017-09-08 23:30:31 +02:00
- npmci node install lts
- npmci npm install
- npmci npm test
2017-05-25 13:26:06 +02:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-06-05 08:06:32 +02:00
tags:
2017-09-08 23:30:31 +02:00
- docker
2018-05-03 20:07:49 +02:00
- notpriv
2016-06-05 08:06:32 +02:00
2017-05-25 13:26:06 +02:00
testSTABLE:
2016-06-05 08:06:32 +02:00
stage: test
script:
2018-09-22 14:36:25 +02:00
- npmci npm prepare
2018-05-03 21:29:35 +02:00
- npmci node install stable
2017-09-08 23:30:31 +02:00
- npmci npm install
- npmci npm test
2017-05-25 13:26:06 +02:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-06-05 08:06:32 +02:00
tags:
2017-09-08 23:30:31 +02:00
- docker
2018-05-03 20:07:49 +02:00
- notpriv
2016-06-05 08:06:32 +02:00
2016-05-30 02:28:47 +02:00
release:
stage: release
script:
2018-05-04 15:58:11 +02:00
- npmci node install stable
2017-09-08 23:30:31 +02:00
- npmci npm publish
2016-05-30 02:28:47 +02:00
only:
2017-09-08 23:30:31 +02:00
- tags
2016-05-30 02:28:47 +02:00
tags:
2017-09-08 23:30:31 +02:00
- docker
2018-05-03 20:07:49 +02:00
- notpriv
2016-06-02 19:35:01 +02:00
# ====================
# metadata stage
# ====================
codequality:
stage: metadata
image: docker:stable
allow_failure: true
services:
- docker:stable-dind
script:
- export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
- docker run
--env SOURCE_CODE="$PWD"
--volume "$PWD":/code
--volume /var/run/docker.sock:/var/run/docker.sock
"registry.gitlab.com/gitlab-org/security-products/codequality:$SP_VERSION" /code
artifacts:
paths: [codeclimate.json]
tags:
- docker
- priv
2016-06-02 20:09:28 +02:00
trigger:
stage: metadata
2016-06-02 19:35:01 +02:00
script:
2017-09-08 23:30:31 +02:00
- npmci trigger
2016-06-02 19:35:01 +02:00
only:
2017-09-08 23:30:31 +02:00
- tags
2016-06-02 19:35:01 +02:00
tags:
2017-09-08 23:30:31 +02:00
- docker
2018-05-03 20:07:49 +02:00
- notpriv
pages:
2017-05-25 13:26:06 +02:00
image: hosttoday/ht-docker-node:npmci
stage: metadata
script:
2018-07-16 00:04:24 +02:00
- npmci command npm install -g typedoc typescript
2018-09-22 14:36:25 +02:00
- npmci npm prepare
2018-07-16 00:04:24 +02:00
- npmci npm install
- npmci command typedoc --module "commonjs" --target "ES2016" --out public/ ts/
2017-03-24 22:00:14 +01:00
tags:
- docker
2018-05-03 20:07:49 +02:00
- notpriv
2017-05-25 13:26:06 +02:00
only:
- tags
artifacts:
expire_in: 1 week
paths:
- public
2018-07-16 00:04:24 +02:00
allow_failure: true