Skip to content

Commit

Permalink
Merge branch 'GDO-877' into 'master'
Browse files Browse the repository at this point in the history
GDO-877: Use Docker Manifests for Multi-Arch Images

Closes GDO-877

See merge request devops-program/docker-builds!502
  • Loading branch information
erikostien-pingidentity committed Jul 6, 2021
2 parents a9e9eed + 6b7bc89 commit 3a306df
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions ci_scripts/ci_tools.lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ banner() {

FONT_RED="$(printf '\033[0;31m')"
FONT_GREEN="$(printf '\033[0;32m')"
FONT_YELLOW="$(printf '\033[0;33m')"
FONT_NORMAL="$(printf '\033[0m')"
CHAR_CHECKMARK="$(printf '\xE2\x9C\x94')"
CHAR_CROSSMARK="$(printf '\xE2\x9D\x8C')"
Expand All @@ -245,14 +246,21 @@ CHAR_CROSSMARK="$(printf '\xE2\x9D\x8C')"
# Echo message in red color
################################################################################
echo_red() {
echo -e "${FONT_RED}$*${FONT_NORMAL}"
echo "${FONT_RED}$*${FONT_NORMAL}"
}

################################################################################
# Echo message in yellow color
################################################################################
echo_yellow() {
echo "${FONT_YELLOW}$*${FONT_NORMAL}"
}

################################################################################
# Echo message in green color
################################################################################
echo_green() {
echo -e "${FONT_GREEN}$*${FONT_NORMAL}"
echo "${FONT_GREEN}$*${FONT_NORMAL}"
}

################################################################################
Expand Down

0 comments on commit 3a306df

Please sign in to comment.