Skip to content

Commit eea0184

Browse files
committed
fix(CI): Bump gcc to 14, add debug print, and set the mac os to 12
1 parent f08e688 commit eea0184

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/pipeline.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
cxx:
17-
- g++-13
17+
- g++-14
1818
- clang++-16
1919
build_type: [Debug, Release]
2020
std: [11]
2121
include:
22-
- cxx: g++-13
23-
cc: gcc-13
22+
- cxx: g++-14
23+
cc: gcc-14
2424
- cxx: clang++-16
2525
cc: clang-16
2626
llvm_version: 16
@@ -48,6 +48,11 @@ jobs:
4848
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
4949
source "$HOME/.cargo/env"
5050
51+
- name: Print gcc version
52+
run: |
53+
which gcc
54+
gcc --version
55+
5156
- name: Configure build
5257
env:
5358
CC: ${{matrix.cc}}
@@ -114,7 +119,7 @@ jobs:
114119

115120
macos-builds:
116121
name: macos ${{matrix.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}}
117-
runs-on: macos-latest
122+
runs-on: macos-12
118123
strategy:
119124
fail-fast: false
120125
matrix:

0 commit comments

Comments
 (0)