Skip to content

Commit

Permalink
fix(CI): Bump gcc to 14, add debug print, and set the mac os to 12
Browse files Browse the repository at this point in the history
  • Loading branch information
LinuxDevon committed May 21, 2024
1 parent f08e688 commit eea0184
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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}}
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit eea0184

Please sign in to comment.