2017-03-09 19:55:30 +00:00
|
|
|
# gitzone standard
|
2017-03-11 15:22:33 +00:00
|
|
|
image: hosttoday/ht-docker-node:npmci
|
|
|
|
|
|
|
|
cache:
|
|
|
|
paths:
|
2018-07-18 18:58:12 +00:00
|
|
|
- .npmci_cache/
|
2017-03-11 15:22:33 +00:00
|
|
|
key: "$CI_BUILD_STAGE"
|
2017-03-09 19:55:30 +00:00
|
|
|
|
|
|
|
stages:
|
2018-07-18 18:58:12 +00:00
|
|
|
- security
|
2017-03-09 19:55:30 +00:00
|
|
|
- test
|
|
|
|
- release
|
2018-07-18 18:58:12 +00:00
|
|
|
- metadata
|
2017-03-09 19:55:30 +00:00
|
|
|
|
2018-07-18 18:58:12 +00:00
|
|
|
# ====================
|
|
|
|
# security stage
|
|
|
|
# ====================
|
2017-09-09 11:21:03 +00:00
|
|
|
mirror:
|
2018-07-18 18:58:12 +00:00
|
|
|
stage: security
|
2017-09-09 11:21:03 +00:00
|
|
|
script:
|
|
|
|
- npmci git mirror
|
|
|
|
tags:
|
|
|
|
- docker
|
2018-07-18 18:58:12 +00:00
|
|
|
- notpriv
|
2017-09-09 11:21:03 +00:00
|
|
|
|
2018-07-18 18:58:12 +00:00
|
|
|
snyk:
|
|
|
|
stage: security
|
|
|
|
script:
|
|
|
|
- npmci command npm install -g snyk
|
|
|
|
- npmci command npm install --ignore-scripts
|
|
|
|
- npmci command snyk test
|
|
|
|
tags:
|
|
|
|
- docker
|
|
|
|
- notpriv
|
|
|
|
|
|
|
|
# ====================
|
|
|
|
# test stage
|
|
|
|
# ====================
|
2017-03-09 19:55:30 +00:00
|
|
|
testLEGACY:
|
|
|
|
stage: test
|
|
|
|
script:
|
2017-09-09 11:21:03 +00:00
|
|
|
- npmci node install legacy
|
|
|
|
- npmci npm install
|
|
|
|
- npmci npm test
|
2017-03-09 19:55:30 +00:00
|
|
|
coverage: /\d+.?\d+?\%\s*coverage/
|
|
|
|
tags:
|
2017-09-09 11:21:03 +00:00
|
|
|
- docker
|
2018-07-18 18:58:12 +00:00
|
|
|
- notpriv
|
2017-03-09 19:55:30 +00:00
|
|
|
allow_failure: true
|
|
|
|
|
|
|
|
testLTS:
|
|
|
|
stage: test
|
|
|
|
script:
|
2017-09-09 11:21:03 +00:00
|
|
|
- npmci node install lts
|
|
|
|
- npmci npm install
|
|
|
|
- npmci npm test
|
2017-03-09 19:55:30 +00:00
|
|
|
coverage: /\d+.?\d+?\%\s*coverage/
|
|
|
|
tags:
|
2017-09-09 11:21:03 +00:00
|
|
|
- docker
|
2018-07-18 18:58:12 +00:00
|
|
|
- notpriv
|
2017-03-09 19:55:30 +00:00
|
|
|
|
|
|
|
testSTABLE:
|
|
|
|
stage: test
|
|
|
|
script:
|
2017-09-09 11:21:03 +00:00
|
|
|
- npmci node install stable
|
|
|
|
- npmci npm install
|
|
|
|
- npmci npm test
|
2017-03-09 19:55:30 +00:00
|
|
|
coverage: /\d+.?\d+?\%\s*coverage/
|
|
|
|
tags:
|
2017-09-09 11:21:03 +00:00
|
|
|
- docker
|
2018-07-18 18:58:12 +00:00
|
|
|
- notpriv
|
2017-03-09 19:55:30 +00:00
|
|
|
|
|
|
|
release:
|
|
|
|
stage: release
|
|
|
|
script:
|
2018-07-18 18:58:12 +00:00
|
|
|
- npmci node install stable
|
2017-09-09 11:21:03 +00:00
|
|
|
- npmci npm publish
|
2017-03-09 19:55:30 +00:00
|
|
|
only:
|
2017-09-09 11:21:03 +00:00
|
|
|
- tags
|
2017-03-09 19:55:30 +00:00
|
|
|
tags:
|
2017-09-09 11:21:03 +00:00
|
|
|
- docker
|
2018-07-18 18:58:12 +00:00
|
|
|
- notpriv
|
|
|
|
|
|
|
|
# ====================
|
|
|
|
# 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
|
2017-03-09 19:55:30 +00:00
|
|
|
|
|
|
|
trigger:
|
2018-07-18 18:58:12 +00:00
|
|
|
stage: metadata
|
2017-03-09 19:55:30 +00:00
|
|
|
script:
|
2017-09-09 11:21:03 +00:00
|
|
|
- npmci trigger
|
2017-03-09 19:55:30 +00:00
|
|
|
only:
|
2017-09-09 11:21:03 +00:00
|
|
|
- tags
|
2017-03-09 19:55:30 +00:00
|
|
|
tags:
|
2017-09-09 11:21:03 +00:00
|
|
|
- docker
|
2018-07-18 18:58:12 +00:00
|
|
|
- notpriv
|
2017-03-09 19:55:30 +00:00
|
|
|
|
|
|
|
pages:
|
2017-07-18 13:24:05 +00:00
|
|
|
image: hosttoday/ht-docker-node:npmci
|
2018-07-18 18:58:12 +00:00
|
|
|
stage: metadata
|
2017-03-09 19:55:30 +00:00
|
|
|
script:
|
2018-07-30 14:08:14 +00:00
|
|
|
- npmci command npm install -g typedoc typescript
|
|
|
|
- npmci npm install
|
|
|
|
- npmci command typedoc --module "commonjs" --target "ES2016" --out public/ ts/
|
2017-07-18 13:24:05 +00:00
|
|
|
tags:
|
|
|
|
- docker
|
2018-07-18 18:58:12 +00:00
|
|
|
- notpriv
|
2017-03-09 19:55:30 +00:00
|
|
|
only:
|
|
|
|
- tags
|
|
|
|
artifacts:
|
|
|
|
expire_in: 1 week
|
|
|
|
paths:
|
|
|
|
- public
|
2018-07-18 18:58:12 +00:00
|
|
|
allow_failure: true
|
|
|
|
|
|
|
|
windowsCompatibility:
|
|
|
|
image: stefanscherer/node-windows:10-build-tools
|
|
|
|
stage: metadata
|
|
|
|
script:
|
|
|
|
- npm install & npm test
|
|
|
|
coverage: /\d+.?\d+?\%\s*coverage/
|
|
|
|
tags:
|
|
|
|
- windows
|
|
|
|
allow_failure: true
|