Skip to content

Commit

Permalink
remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
gogoex committed Jan 4, 2024
1 parent 36cdb76 commit 195e412
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions ci/test/04_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ if [ -z "$DANGER_RUN_CI_ON_HOST" ]; then
# Though, exclude those with newlines to avoid parsing problems.
python3 -c 'import os; [print(f"{key}={value}") for key, value in os.environ.items() if "\n" not in value]' | tee /tmp/env
echo "Creating $CI_IMAGE_NAME_TAG container to run in"
echo "ci_retry: $CI_RETRY_EXE"
echo "root_dir: $BASE_ROOT_DIR"
echo "env: $FILE_ENV"
echo "container: $CONTAINER_NAME"
DOCKER_BUILDKIT=1 ${CI_RETRY_EXE} docker build \
--file "${BASE_ROOT_DIR}/ci/test_imagefile" \
--build-arg "CI_IMAGE_NAME_TAG=${CI_IMAGE_NAME_TAG}" \
Expand All @@ -45,7 +41,7 @@ if [ -z "$DANGER_RUN_CI_ON_HOST" ]; then
docker volume create "${CONTAINER_NAME}_previous_releases" || true

if [ -n "${RESTART_CI_DOCKER_BEFORE_RUN}" ] ; then
echo "Restart docker before run to stop and clear all containers started with --rm"
echo "Prune stopped containers"
podman container prune -f
echo "Prune all dangling images"
docker image prune --force
Expand Down

0 comments on commit 195e412

Please sign in to comment.