Updated gitlab-ci
Signed-off-by: Marcin Woźniak <y0rune@aol.com>
This commit is contained in:
parent
19653178c4
commit
3ae44b5bcf
@ -1,6 +1,5 @@
|
|||||||
stages:
|
stages:
|
||||||
- build
|
- build
|
||||||
- test
|
|
||||||
- deploy
|
- deploy
|
||||||
|
|
||||||
build:
|
build:
|
||||||
@ -17,19 +16,19 @@ build:
|
|||||||
- build
|
- build
|
||||||
- node_modules/
|
- node_modules/
|
||||||
|
|
||||||
test:
|
|
||||||
stage: test
|
|
||||||
image: node
|
|
||||||
script:
|
|
||||||
- echo "Testing App"
|
|
||||||
- CI= yarn test --passWithNoTests
|
|
||||||
- echo "Test successfully!"
|
|
||||||
|
|
||||||
deploy_production:
|
deploy_production:
|
||||||
stage: deploy
|
stage: deploy
|
||||||
|
before_script:
|
||||||
|
- apt-get update
|
||||||
|
- apt-get --yes --force-yes install rsync
|
||||||
script:
|
script:
|
||||||
|
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )'
|
||||||
|
- 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'
|
||||||
- echo "Deploying to server"
|
- echo "Deploying to server"
|
||||||
- rsync --progress -r build/* --delete root@35.207.132.68:/var/www/plannaplan.pl
|
- rsync --progress -r build/* --delete website@wmi-frontend.plannaplan.pl:/var/www/plannaplan.pl
|
||||||
- echo "Deployed"
|
- echo "Deployed"
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
|
Loading…
Reference in New Issue
Block a user