Skip to content

Commit

Permalink
Update to GCC 13 in Linux CI build
Browse files Browse the repository at this point in the history
GCC 10 doesn't support the newer libtbb that is in Ubuntu 24.04's package repositories.
  • Loading branch information
Ortham committed Jan 13, 2025
1 parent 799fab8 commit 3ac8937
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ jobs:
doxygen \
language-pack-el \
language-pack-tr \
libtbb-dev \
g++-10
libtbb-dev
- name: Install cbindgen
run: cargo install cbindgen --version 0.27.0
Expand All @@ -72,7 +71,6 @@ jobs:
run: |
mkdir build
cd build
export CXX="g++-10" CC="gcc-10"
cmake .. -DBOOST_ROOT="${{ steps.get-boost.outputs.root }}" -DCPACK_PACKAGE_VERSION="${{ steps.get-libloot-version.outputs.version }}"
make all
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,7 @@ jobs:
doxygen \
language-pack-el \
language-pack-tr \
libtbb-dev \
g++-10
libtbb-dev
- name: Install cbindgen
run: cargo install cbindgen --version 0.27.0
Expand All @@ -87,7 +86,6 @@ jobs:
run: |
mkdir build
cd build
export CXX="g++-10" CC="gcc-10"
cmake .. -DBOOST_ROOT="${{ steps.get-boost.outputs.root }}" -DCPACK_PACKAGE_VERSION="${{ needs.create_release.outputs.git_tag }}"
make all
Expand Down

0 comments on commit 3ac8937

Please sign in to comment.