You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
716 B
45 lines
716 B
#!/bin/sh
|
|
#自动部署脚本
|
|
|
|
echo $$>$1.pid
|
|
|
|
cd /app
|
|
|
|
source riskenv
|
|
|
|
function run(){
|
|
if [ ! -e $1 ]
|
|
then
|
|
git clone git@gogs.kirito.cool:panqihua/$1.git
|
|
isUpdate=1
|
|
else
|
|
isUpdate=0
|
|
fi
|
|
cd $1 && git reset --hard && git pull && yarn && chmod +x run.sh && killNode
|
|
if [ $isUpdate -eq 0 ]
|
|
then
|
|
url="http://127.0.0.1:3000/finsh?name=$1"
|
|
echo "成功回调地址:$url"
|
|
curl $url
|
|
fi
|
|
}
|
|
|
|
#如果当前存在自动部署进程直接kill掉
|
|
if [ `ls -l *.pid|wc -l` -gt 0 ]
|
|
then
|
|
for file in *.pid
|
|
do
|
|
pid=`cat $file`
|
|
kill -9 $pid
|
|
if [ $? -eq 0 ]
|
|
then
|
|
echo "成功杀死进程:$pid"
|
|
rm -f $file
|
|
fi
|
|
done
|
|
fi
|
|
|
|
run $1
|
|
|
|
rm -f $1.pid
|
|
|
|
|