Compare commits
2 Commits
v2025.0625
...
v2025.0625
Author | SHA1 | Date | |
---|---|---|---|
f094d532cf | |||
fffa88482a |
@ -2,6 +2,9 @@
|
|||||||
set -uo pipefail # Remove -e to handle errors manually
|
set -uo pipefail # Remove -e to handle errors manually
|
||||||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
|
||||||
|
|
||||||
|
docker builder prune -f
|
||||||
|
|
||||||
|
|
||||||
# Colors for output
|
# Colors for output
|
||||||
RED='\033[0;31m'
|
RED='\033[0;31m'
|
||||||
GREEN='\033[0;32m'
|
GREEN='\033[0;32m'
|
||||||
@ -175,27 +178,27 @@ function print_summary() {
|
|||||||
# Format status with proper spacing and colors for Unicode characters
|
# Format status with proper spacing and colors for Unicode characters
|
||||||
local build_col test_col publish_col
|
local build_col test_col publish_col
|
||||||
|
|
||||||
# Format build status
|
# Format build status with colors
|
||||||
case "$build_status" in
|
case "$build_status" in
|
||||||
"✓") build_col=" ${GREEN}✓${NC} " ;;
|
"✓") build_col=$(printf " ${GREEN}✓${NC} ") ;;
|
||||||
"✗") build_col=" ${RED}✗${NC} " ;;
|
"✗") build_col=$(printf " ${RED}✗${NC} ") ;;
|
||||||
"SKIP") build_col=" ${YELLOW}-${NC} " ;;
|
"SKIP") build_col=$(printf " ${YELLOW}-${NC} ") ;;
|
||||||
*) build_col=" - " ;;
|
*) build_col=" - " ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Format test status
|
# Format test status with colors
|
||||||
case "$test_status" in
|
case "$test_status" in
|
||||||
"✓") test_col=" ${GREEN}✓${NC} " ;;
|
"✓") test_col=$(printf " ${GREEN}✓${NC} ") ;;
|
||||||
"✗") test_col=" ${RED}✗${NC} " ;;
|
"✗") test_col=$(printf " ${RED}✗${NC} ") ;;
|
||||||
"SKIP") test_col=" ${YELLOW}-${NC} " ;;
|
"SKIP") test_col=$(printf " ${YELLOW}-${NC} ") ;;
|
||||||
*) test_col=" - " ;;
|
*) test_col=" - " ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# Format publish status
|
# Format publish status with colors
|
||||||
case "$publish_status" in
|
case "$publish_status" in
|
||||||
"✓") publish_col=" ${GREEN}✓${NC} " ;;
|
"✓") publish_col=$(printf " ${GREEN}✓${NC} ") ;;
|
||||||
"✗") publish_col=" ${RED}✗${NC} " ;;
|
"✗") publish_col=$(printf " ${RED}✗${NC} ") ;;
|
||||||
"SKIP") publish_col=" ${YELLOW}-${NC} " ;;
|
"SKIP") publish_col=$(printf " ${YELLOW}-${NC} ") ;;
|
||||||
*) publish_col=" - " ;;
|
*) publish_col=" - " ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user