From f9951270d02e4a6e97b7767de8b5d4ce5b7ccac8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Do=C4=9Fa=20Oru=C3=A7?= Date: Sun, 1 Sep 2024 03:12:19 +0300 Subject: [PATCH] Remove compiler flags passed from command line to CI runner --- .github/workflows/cmake-multi-platform.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index a117c15e..344f368f 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -33,11 +33,9 @@ jobs: - os: ubuntu-24.04 c_compiler: gcc cpp_compiler: g++ - cpp_flags: "-fmax-errors=0" - os: ubuntu-24.04 c_compiler: clang cpp_compiler: clang++ - cpp_flags: "-ferror-limit=0" exclude: - os: windows-latest c_compiler: gcc @@ -108,7 +106,6 @@ jobs: cmake -B ${{ steps.strings.outputs.build-output-dir }} -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} - -DCMAKE_CXX_FLAGS=${{ matrix.cpp_flags }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -S ${{ github.workspace }}