Skip to content

Commit 49252b1

Browse files
bretambroseBret Ambrose
and
Bret Ambrose
authored
Add appleclang-16 entry and remove environment value logging from pushhenv (#308)
(Flaky S3 test) Co-authored-by: Bret Ambrose <[email protected]>
1 parent c6e3464 commit 49252b1

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

builder/core/data.py

+1
Original file line numberDiff line numberDiff line change
@@ -495,6 +495,7 @@ class PKG_TOOLS(Enum):
495495
'13': {},
496496
'14': {},
497497
'15': {},
498+
'16': {},
498499
},
499500
},
500501
'clang': {

builder/core/project.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -254,10 +254,10 @@ def _pushenv(project, key, env):
254254
env.shell.pushenv()
255255
# set project env defaults
256256
for var, value in project.config.get('env', {}).items():
257-
env.shell.setenv(var, value)
257+
env.shell.setenv(var, value, is_secret=True)
258258
# specific env defaults
259259
for var, value in project.config.get(key, {}).items():
260-
env.shell.setenv(var, value)
260+
env.shell.setenv(var, value, is_secret=True)
261261

262262

263263
def _popenv(env):

builder/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def run_action(action, env):
3333
# Set build environment from config
3434
env.shell.pushenv()
3535
for var, value in getattr(env, 'env', {}).items():
36-
env.shell.setenv(var, value)
36+
env.shell.setenv(var, value, is_secret=True)
3737

3838
if isinstance(action, str):
3939
action_cls = Scripts.find_action(action)

0 commit comments

Comments
 (0)