aboutsummaryrefslogtreecommitdiff
path: root/ci/README.md
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-05-05 08:45:37 +0200
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2023-05-05 08:46:35 +0200
commitfa7d75540ed266d76c946d7ab8fdf4aa2d12f40e (patch)
tree94d1e95a0cfea79ea40569acd56b1d1fe055ecc5 /ci/README.md
parent6c7ebcc14b7908a67a8f8764b398e76c8fb4fe8b (diff)
downloadbitcoin-fa7d75540ed266d76c946d7ab8fdf4aa2d12f40e.tar.xz
ci: Pass full env to CI pod to avoid missing a var
Instead of enumerating each passed env var, just pass all. This avoids the risk of missing to enumerate one. Also, it is less code. The risk could be that an env var causes non-deterministic behavior, but this can be fixed by explicitly excluding it once the issue is known. Values with newlines can not be stored in the file and parsed by docker/podman, so they are excluded.
Diffstat (limited to 'ci/README.md')
-rw-r--r--ci/README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/ci/README.md b/ci/README.md
index de798607df..d014565f44 100644
--- a/ci/README.md
+++ b/ci/README.md
@@ -14,10 +14,10 @@ testing compared to other parts of the codebase. If you want to keep the work tr
system in a virtual machine with a Linux operating system of your choice.
To allow for a wide range of tested environments, but also ensure reproducibility to some extent, the test stage
-requires `docker` to be installed. To install all requirements on Ubuntu, run
+requires `bash`, `docker`, and `python3` to be installed. To install all requirements on Ubuntu, run
```
-sudo apt install docker.io bash
+sudo apt install bash docker.io python3
```
To run the default test stage,