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.
2 parents 14c64d2 + dca356b commit 0fcc41aCopy full SHA for 0fcc41a
src/test/generate-matrix.py
@@ -96,7 +96,9 @@ def add_build(
96
"""Add a build to the matrix.include array"""
97
98
# Extra environment to add to this command:
99
- env = env or {}
+ # NOTE: ensure we copy the dict rather than modify, re-used dicts can cause
100
+ # overwriting
101
+ env = dict(env) if env is not None else {}
102
103
# hwloc tries to look for opengl devices by connecting to a port that might
104
# sometimes be an x11 port, but more often for us is munge, turn it off
0 commit comments