diff --git a/bazel/docker/archlinux/Dockerfile b/bazel/docker/archlinux/Dockerfile index 0121ef1978e..fac3590a292 100644 --- a/bazel/docker/archlinux/Dockerfile +++ b/bazel/docker/archlinux/Dockerfile @@ -24,5 +24,5 @@ FROM build AS test RUN bazel test \ -c opt \ --action_env=BAZEL_CXXOPTS="-std=c++17" \ - --test_output=all \ + --test_output=errors \ ... diff --git a/bazel/docker/centos/Dockerfile b/bazel/docker/centos/Dockerfile index cedf888cdf2..27b68fb946e 100644 --- a/bazel/docker/centos/Dockerfile +++ b/bazel/docker/centos/Dockerfile @@ -41,5 +41,5 @@ FROM build AS test RUN bazel test \ -c opt \ --action_env=BAZEL_CXXOPTS="-std=c++17" \ - --test_output=all \ + --test_output=errors \ ... diff --git a/bazel/docker/debian/Dockerfile b/bazel/docker/debian/Dockerfile index 5e645f0afdf..0c7a35f9941 100644 --- a/bazel/docker/debian/Dockerfile +++ b/bazel/docker/debian/Dockerfile @@ -39,5 +39,5 @@ FROM build AS test RUN bazel test \ -c opt \ --action_env=BAZEL_CXXOPTS="-std=c++17" \ - --test_output=all \ + --test_output=errors \ ... diff --git a/bazel/docker/fedora/Dockerfile b/bazel/docker/fedora/Dockerfile index 3e515cd8f1e..44206435d27 100644 --- a/bazel/docker/fedora/Dockerfile +++ b/bazel/docker/fedora/Dockerfile @@ -33,5 +33,5 @@ FROM build AS test RUN bazel test \ -c opt \ --action_env=BAZEL_CXXOPTS="-std=c++17" \ - --test_output=all \ + --test_output=errors \ ... diff --git a/bazel/docker/opensuse/Dockerfile b/bazel/docker/opensuse/Dockerfile index d8092798d4a..fa340e57eca 100644 --- a/bazel/docker/opensuse/Dockerfile +++ b/bazel/docker/opensuse/Dockerfile @@ -35,5 +35,5 @@ FROM build AS test RUN bazel6 test \ -c opt \ --action_env=BAZEL_CXXOPTS="-std=c++17" \ - --test_output=all \ + --test_output=errors \ ... diff --git a/bazel/docker/ubuntu/Dockerfile b/bazel/docker/ubuntu/Dockerfile index 2dc1ec5f094..7348b13554a 100644 --- a/bazel/docker/ubuntu/Dockerfile +++ b/bazel/docker/ubuntu/Dockerfile @@ -36,5 +36,5 @@ FROM build AS test RUN bazel test \ -c opt \ --action_env=BAZEL_CXXOPTS="-std=c++17" \ - --test_output=all \ + --test_output=errors \ ...