OpenMediaCenter/.gitlab-ci.yml

70 lines
1.1 KiB
YAML
Raw Normal View History

2020-06-09 15:49:41 +00:00
image: node:latest
stages:
2020-06-20 08:02:03 +00:00
- prepare
2020-06-09 15:49:41 +00:00
- build
2020-06-20 08:02:03 +00:00
- test
- deploy
2020-06-09 15:49:41 +00:00
cache:
paths:
- node_modules/
2020-06-29 19:20:14 +00:00
include:
- template: SAST.gitlab-ci.yml
- template: Code-Quality.gitlab-ci.yml
2020-06-09 15:49:41 +00:00
variables:
SAST_DISABLE_DIND: "true"
2020-06-20 08:02:03 +00:00
prepare:
stage: prepare
script:
- npm install --progress=false
build:
stage: build
script:
- npm run build
artifacts:
expire_in: 7 days
paths:
- build/
needs: ["prepare"]
2020-06-20 08:02:03 +00:00
2020-06-09 15:49:41 +00:00
test:
stage: test
script:
2020-06-09 19:54:52 +00:00
- CI=true npm run test
artifacts:
reports:
junit:
- ./junit.xml
needs: ["prepare"]
2020-06-09 15:49:41 +00:00
2020-06-09 18:10:26 +00:00
coverage:
2020-06-20 08:02:03 +00:00
stage: test
2020-06-09 18:10:26 +00:00
script:
2020-06-09 19:54:52 +00:00
- CI=true npm run coverage
2020-06-09 18:10:26 +00:00
artifacts:
reports:
2020-06-09 19:54:52 +00:00
cobertura:
- ./coverage/cobertura-coverage.xml
needs: ["prepare"]
deploy_test1:
stage: deploy
image: luki42/alpineopenssh:latest
needs:
- test
- build
only:
- master
script:
- eval $(ssh-agent -s)
- ssh-add <(echo "$SSH_PRIVATE_KEY")
- mkdir -p ~/.ssh
- '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config'
- ssh root@192.168.0.42 "cd /var/www/html/ && git fetch origin && git rebase origin/master && exit"