mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-09-11 21:20:39 +02:00
The variable is never set and will always be unbound.
The only way to set it correctly is via this hack:
.github/workflows/ci.yml- # In the image build step, no external environment variables are available,
.github/workflows/ci.yml- # so any settings will need to be written to the settings env file:
.github/workflows/ci.yml: run: sed -i "s|\${INSTALL_BCC_TRACING_TOOLS}|true|g" ./ci/test/00_setup_env_native_asan.sh
So just silence the warning, which happens when running the task
locally:
```
./ci/test/00_setup_env_native_asan.sh: line 12: INSTALL_BCC_TRACING_TOOLS: unbound variable
```