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 13c0be9 commit 38c5912Copy full SHA for 38c5912
2 files changed
python/private/build_data_writer.sh
@@ -1,7 +1,6 @@
1
#!/bin/sh
2
3
echo "TARGET $TARGET" >> $OUTPUT
4
-echo "CONFIG_ID $CONFIG_ID" >> $OUTPUT
5
echo "CONFIG_MODE $CONFIG_MODE" >> $OUTPUT
6
echo "STAMPED $STAMPED" >> $OUTPUT
7
if [ -n "$VERSION_FILE" ]; then
python/private/py_executable.bzl
@@ -1380,9 +1380,6 @@ def _write_build_data(ctx):
1380
ctx.actions.run(
1381
executable = ctx.executable._build_data_writer,
1382
env = {
1383
- # Include config id so binaries can e.g. cache content based on how
1384
- # they were built.
1385
- "CONFIG_ID": ctx.configuration.short_id,
1386
# Include config mode so that binaries can detect if they're
1387
# being used as a build tool or not, allowing for runtime optimizations.
1388
"CONFIG_MODE": "EXEC" if _is_tool_config(ctx) else "TARGET",
0 commit comments