Skip to content

Commit d9aff06

Browse files
committed
Remove functions that were moved around
1 parent a0f7d11 commit d9aff06

File tree

1 file changed

+0
-25
lines changed

1 file changed

+0
-25
lines changed

libcxx/utils/ci/run-buildbot

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -95,31 +95,6 @@ MONOREPO_ROOT="${MONOREPO_ROOT:="$(git rev-parse --show-toplevel)"}"
9595
BUILD_DIR="${BUILD_DIR:=${MONOREPO_ROOT}/build/${BUILDER}}"
9696
INSTALL_DIR="${BUILD_DIR}/install"
9797

98-
function step() {
99-
endstep
100-
set +x
101-
if [[ ! -z ${GITHUB_ACTIONS+x} ]]; then
102-
echo "::group::$1"
103-
export IN_GROUP=1
104-
else
105-
echo "--- $1"
106-
fi
107-
set -x
108-
}
109-
110-
function endstep() {
111-
set +x
112-
if [[ ! -z ${GITHUB_ACTIONS+x} ]] && [[ ! -z ${IN_GROUP+x} ]]; then
113-
echo "::endgroup::"
114-
unset IN_GROUP
115-
fi
116-
set -x
117-
}
118-
119-
function error() {
120-
echo "::error::$1"
121-
}
122-
12398
if [ -z ${CC+x} ]; then
12499
error "Environment variable CC must be defined"
125100
exit 1

0 commit comments

Comments
 (0)