Skip to content

Commit fa1d2f6

Browse files
author
MarcoFalke
committed
ci: Pass CI_FAILFAST_TEST_LEAVE_DANGLING into container
1 parent fd813bf commit fa1d2f6

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

ci/test/02_run_container.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,12 @@ def main():
2626
encoding="utf8",
2727
).stdout.splitlines()
2828
settings = set(l.split("=")[0].split("export ")[1] for l in settings)
29-
# Add this one manually, because it is the only one set inside the
30-
# container that also allows external overwrites
31-
settings.add("BASE_BUILD_DIR")
29+
# Add "hidden" settings, which are never exported, manually. Otherwise,
30+
# they will not be passed on.
31+
settings.update([
32+
"BASE_BUILD_DIR",
33+
"CI_FAILFAST_TEST_LEAVE_DANGLING",
34+
])
3235

3336
# Append $USER to /tmp/env to support multi-user systems and $CONTAINER_NAME
3437
# to allow support starting multiple runs simultaneously by the same user.

0 commit comments

Comments
 (0)