From eea0184f4d919d364bec5b9b27e9d42f6121ec9c Mon Sep 17 00:00:00 2001 From: Devon Adair Date: Tue, 21 May 2024 17:40:13 -0400 Subject: [PATCH] fix(CI): Bump gcc to 14, add debug print, and set the mac os to 12 --- .github/workflows/pipeline.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index bb94b75..29e1951 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -14,13 +14,13 @@ jobs: fail-fast: false matrix: cxx: - - g++-13 + - g++-14 - clang++-16 build_type: [Debug, Release] std: [11] include: - - cxx: g++-13 - cc: gcc-13 + - cxx: g++-14 + cc: gcc-14 - cxx: clang++-16 cc: clang-16 llvm_version: 16 @@ -48,6 +48,11 @@ jobs: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y source "$HOME/.cargo/env" + - name: Print gcc version + run: | + which gcc + gcc --version + - name: Configure build env: CC: ${{matrix.cc}} @@ -114,7 +119,7 @@ jobs: macos-builds: name: macos ${{matrix.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}} - runs-on: macos-latest + runs-on: macos-12 strategy: fail-fast: false matrix: