Skip to content

Commit c79a284

Browse files
committed
fix(CI): Change gcc to 11 which is default installed on ubuntu 22
1 parent eea0184 commit c79a284

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

‎.github/workflows/pipeline.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
cxx:
17-
- g++-14
17+
- g++-11
1818
- clang++-16
1919
build_type: [Debug, Release]
2020
std: [11]
2121
include:
22-
- cxx: g++-14
23-
cc: gcc-14
22+
- cxx: g++-11
23+
cc: gcc-11
2424
- cxx: clang++-16
2525
cc: clang-16
2626
llvm_version: 16
@@ -49,9 +49,7 @@ jobs:
4949
source "$HOME/.cargo/env"
5050
5151
- name: Print gcc version
52-
run: |
53-
which gcc
54-
gcc --version
52+
run: gcc --version
5553

5654
- name: Configure build
5755
env:

0 commit comments

Comments
 (0)
X