We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aaaa432 commit fa12558Copy full SHA for fa12558
ci/test/04_install.sh
@@ -28,7 +28,7 @@ export BINS_SCRATCH_DIR="${BASE_SCRATCH_DIR}/bins/"
28
if [ -z "$DANGER_RUN_CI_ON_HOST" ]; then
29
# Export all env vars to avoid missing some.
30
# Though, exclude those with newlines to avoid parsing problems.
31
- python3 -c 'import os; [print(f"{key}={value}") for key, value in os.environ.items() if "\n" not in value]' | tee /tmp/env
+ python3 -c 'import os; [print(f"{key}={value}") for key, value in os.environ.items() if "\n" not in value and "HOME" not in key]' | tee /tmp/env
32
echo "Creating $CI_IMAGE_NAME_TAG container to run in"
33
DOCKER_BUILDKIT=1 ${CI_RETRY_EXE} docker build \
34
--file "${BASE_ROOT_DIR}/ci/test_imagefile" \
0 commit comments