Forward the CI environment variable when running in Docker

We want to be able to adjust our configuration based on whether we are
running in CI, propagate this so our tests can use it.
This commit is contained in:
Trevor Gross 2024-12-22 10:14:56 +00:00
parent cf58a7ce90
commit 489524413b

View file

@ -28,6 +28,7 @@ run() {
docker run \
--rm \
--user "$(id -u):$(id -g)" \
-e CI \
-e RUSTFLAGS \
-e CARGO_HOME=/cargo \
-e CARGO_TARGET_DIR=/target \