We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f08e688 commit eea0184Copy full SHA for eea0184
1 file changed
.github/workflows/pipeline.yml
@@ -14,13 +14,13 @@ jobs:
14
fail-fast: false
15
matrix:
16
cxx:
17
- - g++-13
+ - g++-14
18
- clang++-16
19
build_type: [Debug, Release]
20
std: [11]
21
include:
22
- - cxx: g++-13
23
- cc: gcc-13
+ - cxx: g++-14
+ cc: gcc-14
24
- cxx: clang++-16
25
cc: clang-16
26
llvm_version: 16
@@ -48,6 +48,11 @@ jobs:
48
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
49
source "$HOME/.cargo/env"
50
51
+ - name: Print gcc version
52
+ run: |
53
+ which gcc
54
+ gcc --version
55
+
56
- name: Configure build
57
env:
58
CC: ${{matrix.cc}}
@@ -114,7 +119,7 @@ jobs:
114
119
115
120
macos-builds:
116
121
name: macos ${{matrix.cxx}}, C++${{matrix.std}}, ${{matrix.build_type}}
117
- runs-on: macos-latest
122
+ runs-on: macos-12
118
123
strategy:
124
125
0 commit comments