From e38dbd2f3fe241e9e669595e611d6d4cd07da97e Mon Sep 17 00:00:00 2001 From: Robin Haberkorn Date: Sun, 21 Sep 2025 14:21:09 +0200 Subject: when running the testsuite with --verbose, also turn off colors (--color=never) Improves readability of the log files. --- .github/workflows/ci.yml | 6 +++--- .github/workflows/nightly.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aea029e..508931c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: # NOTE: The test suite must be run in verbose mode because if it fails # we won't be able to analyze testsuite.log. - name: Run Test Suite - run: xvfb-run -a make check TESTSUITEFLAGS="--verbose" + run: xvfb-run -a make check TESTSUITEFLAGS="--verbose --color=never" - name: Build Developer Documentation run: cd doc && make devdoc - name: make distcheck @@ -88,7 +88,7 @@ jobs: # NOTE: The test suite must be run in verbose mode because if it fails # we won't be able to analyze testsuite.log. - name: Run Test Suite - run: make check TESTSUITEFLAGS="--verbose" + run: make check TESTSUITEFLAGS="--verbose --color=never" - name: Build Developer Documentation run: cd doc && make devdoc - run: make distcheck @@ -135,7 +135,7 @@ jobs: # NOTE: The test suite must be run in verbose mode because if it fails # we won't be able to analyze testsuite.log. - name: Run Test Suite - run: make check TESTSUITEFLAGS="--verbose" + run: make check TESTSUITEFLAGS="--verbose --color=never" - name: Build Developer Documentation run: cd doc && make devdoc - name: make distcheck diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 042bb40..761ded0 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -97,7 +97,7 @@ jobs: # NOTE: The test suite must be run in verbose mode because if it fails # we won't be able to analyze testsuite.log. - name: Run Test Suite - run: make check TESTSUITEFLAGS="--verbose" + run: make check TESTSUITEFLAGS="--verbose --color=never" - name: Package run: | @@ -215,8 +215,8 @@ jobs: # we won't be able to analyze testsuite.log. - name: Run Test Suite run: | - make -C build-wingui check TESTSUITEFLAGS="--verbose" - make -C build-wincon check TESTSUITEFLAGS="--verbose" + make -C build-wingui check TESTSUITEFLAGS="--verbose --color=never" + make -C build-wincon check TESTSUITEFLAGS="--verbose --color=never" - name: Prepare Distribution Directory env: @@ -290,7 +290,7 @@ jobs: # NOTE: The test suite must be run in verbose mode because if it fails # we won't be able to analyze testsuite.log. - name: Run Test Suite - run: make check TESTSUITEFLAGS="--verbose" + run: make check TESTSUITEFLAGS="--verbose --color=never" - name: Prepare Distribution Directory env: -- cgit v1.2.3