加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
all_build_mac.sh 681 Bytes
一键复制 编辑 原始数据 按行查看 历史
字节点点 提交于 2022-04-21 12:12 . 本地脚本
#!/bin/zsh
path=$(cd `dirname $0`; pwd)
echo "project_path is $path"
dirList=("attachment-sub" "course-srv" "course-sub" "default-web" "essential-srv" "exam-srv" "exam-sub" "exam-web" "home-web" "merchant-web" "notificator-srv" "notificator-sub" "passport-srv" "passport-sub" "passport-web" "rbac-srv" "student-api" "video-srv" "upload-api" "manage-api" "passport-web-scsdaxx")
for dir in ${dirList[*]}
do
# shellcheck disable=SC2027
echo "start build "$path"/"$dir
if [ $dir == "attachment-sub" ]; then
cd $path"/"$dir && go mod tidy && make mac_build
else
cd $path"/"$dir && go mod tidy && make build
fi
done
sudo docker-compose down && sudo docker-compose up -d
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化