WORKS: .gitlab-ci

Signed-off-by: Marcin Woźniak <y0rune@aol.com>
This commit is contained in:
Marcin Woźniak 2020-11-26 23:13:22 +01:00
parent 5185315e9a
commit 38e28ea536
Signed by: y0rune
GPG Key ID: F204C385F57EB348

View File

@ -1,6 +1,5 @@
stages:
- build
- test
- deploy
build:
@ -8,9 +7,8 @@ build:
image: node
script:
- echo "Start building App"
- npm install typescript eslint
- npm install
- npm run build
- yarn
- CI= yarn run build
- echo "Build successfully!"
artifacts:
expire_in: 1 hour
@ -18,19 +16,19 @@ build:
- build
- node_modules/
test:
stage: test
image: node
script:
- echo "Testing App"
- CI=true npm test --passWithNoTests
- echo "Test successfully!"
deploy_production:
stage: deploy
script:
- echo "Deploying to server"
- rsync --progress -r build/* --delete root@35.207.132.68:/var/www/plannaplan.pl
- echo "Deployed"
only:
- master
stage: deploy
before_script:
- apt-get update
- apt-get --yes --force-yes install rsync
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"
- rsync --progress -r build/* --delete website@wmi-frontend.pl:/var/www/plannaplan.pl
- echo "Deployed"
only:
- master