From 3507b8bf31311f51d5e365f72f107d7528299012 Mon Sep 17 00:00:00 2001 From: Mizux Seiha Date: Thu, 10 Oct 2024 19:23:28 +0200 Subject: [PATCH] ci: use CTEST_OUTPUT_ON_FAILURE=1 --- ci/docker/almalinux/Dockerfile | 4 ++-- ci/docker/alpine/Dockerfile | 4 ++-- ci/docker/archlinux/Dockerfile | 4 ++-- ci/docker/debian/Dockerfile | 4 ++-- ci/docker/fedora/Dockerfile | 4 ++-- ci/docker/opensuse/Dockerfile | 4 ++-- ci/docker/rockylinux/Dockerfile | 4 ++-- ci/docker/ubuntu/Dockerfile | 4 ++-- 8 files changed, 16 insertions(+), 16 deletions(-) diff --git a/ci/docker/almalinux/Dockerfile b/ci/docker/almalinux/Dockerfile index 6256285..bc745a4 100644 --- a/ci/docker/almalinux/Dockerfile +++ b/ci/docker/almalinux/Dockerfile @@ -22,7 +22,7 @@ RUN cmake --build build --target all -v RUN cmake --build build --target install -v FROM build AS test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v # Test install rules FROM env AS install_env @@ -37,4 +37,4 @@ RUN cmake -S. -Bbuild RUN cmake --build build --target all -v FROM install_build AS install_test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v diff --git a/ci/docker/alpine/Dockerfile b/ci/docker/alpine/Dockerfile index 3190a56..b803051 100644 --- a/ci/docker/alpine/Dockerfile +++ b/ci/docker/alpine/Dockerfile @@ -17,7 +17,7 @@ RUN cmake --build build --target all -v RUN cmake --build build --target install -v FROM build AS test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v # Test install rules FROM env AS install_env @@ -32,4 +32,4 @@ RUN cmake -S. -Bbuild RUN cmake --build build --target all -v FROM install_build AS install_test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v diff --git a/ci/docker/archlinux/Dockerfile b/ci/docker/archlinux/Dockerfile index 55cd310..16c5664 100644 --- a/ci/docker/archlinux/Dockerfile +++ b/ci/docker/archlinux/Dockerfile @@ -17,7 +17,7 @@ RUN cmake --build build --target all -v RUN cmake --build build --target install -v FROM build AS test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v # Test install rules FROM env AS install_env @@ -32,4 +32,4 @@ RUN cmake -S. -Bbuild RUN cmake --build build --target all -v FROM install_build AS install_test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v diff --git a/ci/docker/debian/Dockerfile b/ci/docker/debian/Dockerfile index 3ae8f1e..59726b7 100644 --- a/ci/docker/debian/Dockerfile +++ b/ci/docker/debian/Dockerfile @@ -20,7 +20,7 @@ RUN cmake --build build --target all -v RUN cmake --build build --target install -v FROM build AS test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v # Test install rules FROM env AS install_env @@ -35,4 +35,4 @@ RUN cmake -S. -Bbuild RUN cmake --build build --target all -v FROM install_build AS install_test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v diff --git a/ci/docker/fedora/Dockerfile b/ci/docker/fedora/Dockerfile index 10a29df..35f845a 100644 --- a/ci/docker/fedora/Dockerfile +++ b/ci/docker/fedora/Dockerfile @@ -21,7 +21,7 @@ RUN cmake --build build --target all -v RUN cmake --build build --target install -v FROM build AS test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v # Test install rules FROM env AS install_env @@ -36,4 +36,4 @@ RUN cmake -S. -Bbuild RUN cmake --build build --target all -v FROM install_build AS install_test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v diff --git a/ci/docker/opensuse/Dockerfile b/ci/docker/opensuse/Dockerfile index 35d06ec..5ebcb37 100644 --- a/ci/docker/opensuse/Dockerfile +++ b/ci/docker/opensuse/Dockerfile @@ -20,7 +20,7 @@ RUN cmake --build build --target all -v RUN cmake --build build --target install -v FROM build AS test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v # Test install rules FROM env AS install_env @@ -35,4 +35,4 @@ RUN cmake -S. -Bbuild RUN cmake --build build --target all -v FROM install_build AS install_test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v diff --git a/ci/docker/rockylinux/Dockerfile b/ci/docker/rockylinux/Dockerfile index df36973..ac86a75 100644 --- a/ci/docker/rockylinux/Dockerfile +++ b/ci/docker/rockylinux/Dockerfile @@ -23,7 +23,7 @@ RUN cmake --build build --target all -v RUN cmake --build build --target install -v FROM build AS test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v # Test install rules FROM env AS install_env @@ -38,4 +38,4 @@ RUN cmake -S. -Bbuild RUN cmake --build build --target all -v FROM install_build AS install_test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v diff --git a/ci/docker/ubuntu/Dockerfile b/ci/docker/ubuntu/Dockerfile index 83c98d0..f538ceb 100644 --- a/ci/docker/ubuntu/Dockerfile +++ b/ci/docker/ubuntu/Dockerfile @@ -21,7 +21,7 @@ RUN cmake --build build --target all -v RUN cmake --build build --target install -v FROM build AS test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v # Test install rules FROM env AS install_env @@ -36,4 +36,4 @@ RUN cmake -S. -Bbuild RUN cmake --build build --target all -v FROM install_build AS install_test -RUN cmake --build build --target test -v +RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test -v