mirror of
https://github.com/outbackdingo/labca.git
synced 2026-01-27 10:19:34 +00:00
Bump boulder version to release-2024-07-29
This commit is contained in:
18
dev/versions
18
dev/versions
@@ -65,6 +65,18 @@ colorGoVersion() {
|
||||
echo "$fileName:$res"
|
||||
}
|
||||
|
||||
colorGoVersion2() {
|
||||
local fileName="$1"
|
||||
local expectVersion="$2"
|
||||
|
||||
if [ ! -z "$(grep GO_VERSION $fileName | sed -e "s/\s*GO_VERSION: //" | grep $expectVersion || echo "")" ]; then
|
||||
res=$(grep GO_VERSION $fileName | sed -e "s/\s*GO_VERSION: / /" | sed -e "s/$expectVersion/${COL_LIGHT_GREEN}$expectVersion${COL_NC}/")
|
||||
else
|
||||
res=$(grep GO_VERSION $fileName | sed -e "s/\s*GO_VERSION: / /" | sed -e "s/\([0-9\.]*\)/${COL_LIGHT_RED}\1${COL_NC}/g")
|
||||
fi
|
||||
echo "$fileName:$res"
|
||||
}
|
||||
|
||||
echo
|
||||
|
||||
cd ../boulder
|
||||
@@ -93,3 +105,9 @@ grep GO_VERSION -A 3 ../boulder/.github/workflows/release.yml | egrep "\- [\"0-9
|
||||
colorGoVersion .github/workflows/release.yml $goversion
|
||||
echo
|
||||
|
||||
goversion=$(grep GO_VERSION ../boulder/docker-compose.yml | sed -e "s/\s*GO_VERSION://")
|
||||
echo -n "../boulder/docker-compose.yml"
|
||||
grep GO_VERSION ../boulder/docker-compose.yml | sed -e "s/\s*GO_VERSION:/ /"
|
||||
colorGoVersion2 build/docker-compose.yml $goversion
|
||||
echo
|
||||
|
||||
|
||||
Reference in New Issue
Block a user