Compare commits

..

No commits in common. "22b5227ccad622b3252a30c7140eef8d3377ce0c" and "ebb127fc4bb7900c7c90b0292e033f07b1800f08" have entirely different histories.

1 changed files with 2 additions and 1 deletions

View File

@ -49,12 +49,13 @@ build-job:
- if [ "$GOMODTIDY" == 1 ]; then - if [ "$GOMODTIDY" == 1 ]; then
go mod tidy; go mod tidy;
fi fi
- ls -alh ~/.cache/go-build/
- | - |
while IFS= read -r line || [[ -n $line ]] while IFS= read -r line || [[ -n $line ]]
do do
cd $line cd $line
echo "编译 $line" echo "编译 $line"
go build -n go build -v
cd .. cd ..
done < shell/programs.txt done < shell/programs.txt