Files
bitcoin/ci/test
MarcoFalke faf7e38973 ci: refactor: Avoid warning: INSTALL_BCC_TRACING_TOOLS: unbound variable
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
```
2026-05-27 15:47:19 +02:00
..
2026-04-17 13:45:11 +01:00
2026-04-29 18:01:37 +02:00