You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: ci/test/02_run_container.sh
+10
Original file line number
Diff line number
Diff line change
@@ -15,12 +15,22 @@ if [ -z "$DANGER_RUN_CI_ON_HOST" ]; then
15
15
python3 -c 'import os; [print(f"{key}={value}") for key, value in os.environ.items() if "\n" not in value and "HOME" != key and "PATH" != key and "USER" != key]'| tee "/tmp/env-$USER-$CONTAINER_NAME"
16
16
# System-dependent env vars must be kept as is. So read them from the container.
17
17
docker run --rm "${CI_IMAGE_NAME_TAG}" bash -c "env | grep --extended-regexp '^(HOME|PATH|USER)='"| tee --append "/tmp/env-$USER-$CONTAINER_NAME"
18
+
19
+
# Env vars during the build can not be changed. For example, a modified
20
+
# $MAKEJOBS is ignored in the build process. Use --cpuset-cpus as an
21
+
# approximation to respect $MAKEJOBS somewhat, if cpuset is available.
0 commit comments