1
0
Fork 0
js-utils/.gitlab-ci.yml

127 lines
1.8 KiB
YAML
Raw Normal View History

2019-09-17 13:05:36 +00:00
include:
2019-09-17 13:08:40 +00:00
- local: /config/gitlab/ci-tools.yml
- local: /config/gitlab/ci-rules.yml
2019-09-17 13:05:36 +00:00
stages:
- status-pre
- build
- image
- publish
- status-post
# build jobs
build-node:
stage: build
2019-09-17 13:05:36 +00:00
extends:
- .build-node
variables:
GIT_SUBMODULE_STRATEGY: recursive
script:
- make build test
artifacts:
expire_in: 1 week
paths:
2019-09-17 13:05:36 +00:00
- out/
cache:
key: "${CI_COMMIT_REF_SLUG}"
policy: pull-push
paths:
2019-09-17 13:05:36 +00:00
- node_modules/
build-image-branch:
stage: image
extends:
- .build-docker
- .deploy-branches
dependencies:
- build-node
build-image-tag:
stage: image
extends:
- .build-docker
- .deploy-tags
dependencies:
- build-node
# publish jobs
publish-npm:
stage: publish
2019-09-17 13:05:36 +00:00
extends:
- .build-node
- .deploy-tags
dependencies:
- build-node
script:
- npm publish
# commit status
climate-pending:
stage: status-pre
2019-09-17 13:05:36 +00:00
extends:
- .build-climate
script:
- cc-test-reporter before-build
climate-failure:
stage: status-post
2019-09-17 13:05:36 +00:00
extends:
- .build-climate
when: on_failure
script:
- cc-test-reporter after-build --debug --exit-code 1
climate-success:
stage: status-post
2019-09-17 13:05:36 +00:00
extends:
- .build-climate
dependencies:
- build-node
script:
- make upload-climate
codecov-success:
stage: status-post
2019-09-17 13:05:36 +00:00
extends:
- .build-codecov
when: on_success
dependencies:
- build-node
script:
- make upload-codecov
github-pending:
stage: status-pre
2019-09-17 13:05:36 +00:00
extends:
- .build-curl
script:
- ./scripts/github-status.sh pending
github-failure:
stage: status-post
2019-09-17 13:05:36 +00:00
extends:
- .build-curl
when: on_failure
script:
- ./scripts/github-status.sh failure
github-success:
stage: status-post
2019-09-17 13:05:36 +00:00
extends:
- .build-curl
when: on_success
script:
- ./scripts/github-status.sh success