smartstream/.gitlab-ci.yml

151 lines
2.9 KiB
YAML
Raw Normal View History

2017-03-04 12:53:18 +00:00
# gitzone standard
2017-06-30 16:37:48 +00:00
image: hosttoday/ht-docker-node:npmci
cache:
paths:
2019-02-19 00:10:56 +00:00
- .npmci_cache/
2017-06-30 16:37:48 +00:00
key: "$CI_BUILD_STAGE"
2017-03-04 12:53:18 +00:00
2016-09-25 12:00:16 +00:00
stages:
2019-02-19 00:10:56 +00:00
- security
2016-09-25 12:00:16 +00:00
- test
- release
2019-02-19 00:10:56 +00:00
- metadata
2017-03-04 12:53:18 +00:00
2019-02-19 00:10:56 +00:00
# ====================
# security stage
# ====================
mirror:
stage: security
2016-09-25 12:00:16 +00:00
script:
2019-02-19 00:10:56 +00:00
- npmci git mirror
2016-09-25 12:00:16 +00:00
tags:
2019-02-19 00:10:56 +00:00
- docker
- notpriv
snyk:
stage: security
script:
- npmci npm prepare
- npmci command npm install -g snyk
- npmci command npm install --ignore-scripts
- npmci command snyk test
tags:
- docker
- notpriv
sast:
stage: security
image: registry.gitlab.com/hosttoday/ht-docker-dbase:npmci
variables:
DOCKER_DRIVER: overlay2
2017-03-04 12:53:18 +00:00
allow_failure: true
2019-02-19 00:10:56 +00:00
services:
- docker:stable-dind
script:
- npmci npm prepare
- npmci npm install
- npmci command npm run build
- export SP_VERSION=$(echo "$CI_SERVER_VERSION" | sed 's/^\([0-9]*\)\.\([0-9]*\).*/\1-\2-stable/')
- docker run
--env SAST_CONFIDENCE_LEVEL="${SAST_CONFIDENCE_LEVEL:-3}"
--volume "$PWD:/code"
--volume /var/run/docker.sock:/var/run/docker.sock
"registry.gitlab.com/gitlab-org/security-products/sast:$SP_VERSION" /app/bin/run /code
artifacts:
reports:
sast: gl-sast-report.json
tags:
- docker
- priv
# ====================
# test stage
# ====================
2017-03-04 12:53:18 +00:00
2016-09-25 12:00:16 +00:00
testLTS:
stage: test
script:
2019-02-19 00:10:56 +00:00
- npmci npm prepare
- npmci node install lts
- npmci npm install
- npmci npm test
2017-03-04 12:53:18 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-09-25 12:00:16 +00:00
tags:
2019-02-19 00:10:56 +00:00
- docker
- notpriv
2017-03-04 12:53:18 +00:00
2016-09-25 12:00:16 +00:00
testSTABLE:
stage: test
script:
2019-02-19 00:10:56 +00:00
- npmci npm prepare
- npmci node install stable
- npmci npm install
- npmci npm test
2017-03-04 12:53:18 +00:00
coverage: /\d+.?\d+?\%\s*coverage/
2016-09-25 12:00:16 +00:00
tags:
2019-02-19 00:10:56 +00:00
- docker
- notpriv
2017-03-04 12:53:18 +00:00
2016-09-25 12:00:16 +00:00
release:
stage: release
script:
2019-02-19 00:10:56 +00:00
- npmci node install stable
- npmci npm publish
2016-09-25 12:00:16 +00:00
only:
2019-02-19 00:10:56 +00:00
- tags
2016-09-25 12:00:16 +00:00
tags:
2019-02-19 00:10:56 +00:00
- docker
- 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-04 12:53:18 +00:00
trigger:
2019-02-19 00:10:56 +00:00
stage: metadata
2017-03-04 12:53:18 +00:00
script:
2019-02-19 00:10:56 +00:00
- npmci trigger
2017-03-04 12:53:18 +00:00
only:
2019-02-19 00:10:56 +00:00
- tags
2017-03-04 12:53:18 +00:00
tags:
2019-02-19 00:10:56 +00:00
- docker
- notpriv
2017-03-04 12:53:18 +00:00
2016-09-25 12:00:16 +00:00
pages:
2017-06-30 16:37:48 +00:00
image: hosttoday/ht-docker-node:npmci
2019-02-19 00:10:56 +00:00
stage: metadata
2016-09-25 12:00:16 +00:00
script:
2019-02-19 00:10:56 +00:00
- npmci command npm install -g typedoc typescript
- npmci npm prepare
- npmci npm install
- npmci command typedoc --module "commonjs" --target "ES2016" --out public/ ts/
2017-06-30 16:37:48 +00:00
tags:
- docker
2019-02-19 00:10:56 +00:00
- notpriv
2016-09-25 12:00:16 +00:00
only:
- tags
artifacts:
expire_in: 1 week
paths:
2017-03-04 12:53:18 +00:00
- public
2017-06-30 16:37:48 +00:00
allow_failure: true