build.sh 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. #!/bin/bash
  2. #本地压缩文件名
  3. file_name="data.zip"
  4. #测试服器上的目录地址
  5. file_path="dv.hczcxx.cn"
  6. #测试服务器上的演示地址
  7. demo_url="http://192.168.0.109:5178/"
  8. #测试服务器上的登录密码
  9. passwd="admin123@"
  10. # 打包前的准备
  11. node ./scripts/build.js
  12. # 执行打包命令
  13. vite build
  14. # 恢复配置文件
  15. node ./scripts/restore.js
  16. # 排除打包文件
  17. if [ $1 == "wgt" ]; then
  18. node ./scripts/public.js
  19. fi
  20. # 执行打包为zip
  21. node ./scripts/zip.js
  22. current_time=$(date "+%Y%m%d%H%M%S")
  23. # 上传到测试服务器
  24. function testServer() {
  25. expect -c "
  26. spawn scp ./zip/${file_name} root@192.168.0.109:/www/wwwroot/${file_path}
  27. expect {
  28. \"yes/no\" {send \"yes\r\";exp_continue;}
  29. \"*password\" {set timeout 500;send \"${passwd}\r\";}
  30. }
  31. expect eof"
  32. #服务器上的相关操作
  33. /usr/bin/expect << EOF
  34. set time 30
  35. spawn ssh root@192.168.0.109
  36. expect {
  37. "*yes/no" { send "yes\r"; exp_continue }
  38. "*password:" { send "${passwd}\r" }
  39. }
  40. # 进入当前项目的目录
  41. expect "*]#"
  42. send "cd /www/wwwroot/${file_path}\r"
  43. # 删除 static 目录
  44. expect "*]#"
  45. send "rm -rf static\r"
  46. # 解压上传的文件压缩包
  47. expect "*]#"
  48. send "unzip -o ${file_name}\r"
  49. # 备份上一次的压缩文件
  50. expect "*]#"
  51. send "mv ./backup/${file_name} ./backup/${current_time}_${file_name}\r"
  52. # 执行清理备份文件脚本
  53. expect "*]#"
  54. send "node ./backup.js\r"
  55. # 移动当前文件到备份目录
  56. expect "*]#"
  57. send "mv ./${file_name} ./backup/${file_name}\r"
  58. # 退出
  59. send "exit\r"
  60. expect eof
  61. EOF
  62. echo "编译打包后自动部署到测试服务器上完成"
  63. echo "测试服务器地址:${demo_url}"
  64. }
  65. # 删除 plugins 等目录
  66. function delPublic() {
  67. echo "准备移除 plugins 等目录"
  68. #服务器上的相关操作
  69. /usr/bin/expect << EOF
  70. set time 30
  71. spawn ssh root@192.168.0.109
  72. expect {
  73. "*yes/no" { send "yes\r"; exp_continue }
  74. "*password:" { send "${passwd}\r" }
  75. }
  76. # 进入当前项目的目录
  77. expect "*]#"
  78. send "cd /www/wwwroot/${file_path}\r"
  79. # 删除 plugins 目录
  80. expect "*]#"
  81. send "rm -rf plugins\r"
  82. # 退出
  83. send "exit\r"
  84. expect eof
  85. EOF
  86. echo "plugins 等目录移除完成"
  87. }
  88. # 上传到测试服务器
  89. if [ $2 == "test" ]; then
  90. if [ $1 == "all" ]; then
  91. delPublic
  92. fi
  93. testServer
  94. else
  95. echo "编译完成"
  96. fi