Skip to content

Commit

Permalink
feat: upgrade from gcc10 to gcc13
Browse files Browse the repository at this point in the history
  • Loading branch information
SGSSGene committed May 11, 2023
1 parent c554de9 commit 722e802
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ jobs:
build: coverage
build_type: Coverage

- name: "gcc13"
cxx: "g++-13"
cc: "gcc-13"
cxx_flags: "-std=c++20"
build_type: Release

- name: "gcc12"
cxx: "g++-12"
cc: "gcc-12"
Expand All @@ -48,12 +54,6 @@ jobs:
cxx_flags: "-std=c++20"
build_type: Release

- name: "gcc10"
cxx: "g++-10"
cc: "gcc-10"
cxx_flags: "-std=c++20"
build_type: Release

steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ jobs:
fail-fast: true
matrix:
include:
- name: "gcc13"
cxx: "g++-13"
cc: "gcc-13"
cxx_flags: "-std=c++20"
build_type: Release

- name: "gcc12"
cxx: "g++-12"
cc: "gcc-12"
Expand All @@ -41,12 +47,6 @@ jobs:
cxx_flags: "-std=c++20"
build_type: Release

- name: "gcc10"
cxx: "g++-10"
cc: "gcc-10"
cxx_flags: "-std=c++20"
build_type: Release

steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 722e802

Please sign in to comment.