From 529b4cde18b739fd4a94bee6954f9d8706fbe459 Mon Sep 17 00:00:00 2001 From: Hannes Kaeufler Date: Tue, 29 Oct 2024 21:24:31 +0100 Subject: [PATCH] Fix macos CI https://github.com/bazel-contrib/rules_oci/actions/runs/11564798863/job/32190695142 ``` Cannot connect to the Docker daemon at unix:///var/run/docker.sock. Is the docker daemon running? ``` In #724 it looks like I broke macos CI because that particular step is not run as part of the PR builds. I introduced a genrule which requires access to the docker daemon, while previously it was only used in test rules. Adding the env var to the docker host to the action graph should maybe fix this? --- e2e/smoke/.bazelrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/smoke/.bazelrc b/e2e/smoke/.bazelrc index 921660dd..a380354e 100644 --- a/e2e/smoke/.bazelrc +++ b/e2e/smoke/.bazelrc @@ -1 +1 @@ -test --test_env=DOCKER_HOST +test --action_env=DOCKER_HOST --test_env=DOCKER_HOST