明树Git Lab

Commit 3ea3023d authored by Administrator's avatar Administrator

Update .gitlab-ci.yml

parent ea197305
Pipeline #103657 failed with stages
in 1 second
#-----------------------------------------------gzb-10.40.8.7--------------------------------------------------------
# 自动部署到cloud环境
#-----------------------------------------------master-10.40.8.7--------------------------------------------------------
# 自动部署到master环境
stages:
- package
- deploy
package to gzb:
package to master:
stage: package
image: lgatica/openssh-client
script:
- eval $(ssh-agent -s)
- mkdir -p ~/.ssh
- echo "$SSH_PRIVATE_KEY_CLOUD" | tr -d '\r' > ~/.ssh/id_rsa
- echo "$SSH_PRIVATE_KEY_master" | tr -d '\r' > ~/.ssh/id_rsa
- chmod 700 ~/.ssh/id_rsa
- eval "$(ssh-agent -s)"
- ssh-add ~/.ssh/id_rsa
- echo -e "Host *\n\tStrictHostKeyChecking no\n\nHost *\n\tPubkeyAcceptedKeyTypes=+ssh-dss\n\n" > ~/.ssh/config
- ssh-add -l
- ssh root@10.40.8.7 "
cd /srv/hpaas/ts_custom &&
cd /srv/jt_backend &&
git checkout ./package.json &&
git pull &&
npm install --registry https://registry.npmmirror.com &&
......@@ -30,3 +30,27 @@ package to gzb:
- master
tags:
- gzb-runner
deploy to master:
stage: deploy
image: lgatica/openssh-client
script:
- eval $(ssh-agent -s)
- mkdir -p ~/.ssh
- echo "$SSH_PRIVATE_KEY_master" | tr -d '\r' > ~/.ssh/id_rsa
- chmod 700 ~/.ssh/id_rsa
- eval "$(ssh-agent -s)"
- ssh-add ~/.ssh/id_rsa
- echo -e "Host *\n\tStrictHostKeyChecking no\n\nHost *\n\tPubkeyAcceptedKeyTypes=+ssh-dss\n\n" > ~/.ssh/config
- ssh-add -l
- ssh root@10.40.8.7 "
cd /srv/jt_backend &&
pm2 stop ts_custom && pm2 delete ts_custom && pm2 start --name ts_custom npm -- run master || pm2 start --name ts_custom npm -- run master
"
when: always
environment:
name: master
only:
- master
tags:
- gzb-runner
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment