From 54c04980b3cd7f7d68f21fac48360204f4d32890 Mon Sep 17 00:00:00 2001 From: ClausKlein Date: Thu, 22 Aug 2024 16:04:03 +0200 Subject: [PATCH] Try to fix gcc tests on macOS CI workflows --- .github/workflows/c-std.yml | 2 +- .github/workflows/cmake.yml | 2 +- .github/workflows/configure.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/c-std.yml b/.github/workflows/c-std.yml index 44417bf..e673ebc 100644 --- a/.github/workflows/c-std.yml +++ b/.github/workflows/c-std.yml @@ -205,4 +205,4 @@ jobs: run: cmake --build . --config Release -v - name: Run test cases (cmake) - run: ctest -C Release --output-on-failure --max-width 120 \ No newline at end of file + run: ctest -C Release --output-on-failure --max-width 120 diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index e258b64..4b03642 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -62,7 +62,7 @@ jobs: - name: macOS GCC os: macos-latest - compiler: gcc-11 + compiler: gcc cflags: -Werror -Wall -Wextra steps: diff --git a/.github/workflows/configure.yml b/.github/workflows/configure.yml index 0d71689..2bd7df7 100644 --- a/.github/workflows/configure.yml +++ b/.github/workflows/configure.yml @@ -85,7 +85,7 @@ jobs: - name: macOS GCC os: macos-latest - compiler: gcc-11 + compiler: gcc configure-args: --warn - name: macOS Clang