Updated build CI script to clean go mod cache prior to build

This commit is contained in:
Russ Magee 2022-04-09 11:50:24 -07:00
parent 3f6ee1e005
commit 8e8fff415c
3 changed files with 17 additions and 23 deletions

View file

@ -27,6 +27,11 @@ ls
############
stage "Build"
############
echo "Cleaning go mod cache ..."
go clean -modcache
echo "Cleaning go cache ..."
go clean -cache
echo "Invoking 'make all' ..."
make all
############