Skip to content

Commit

Permalink
build: update gcc version
Browse files Browse the repository at this point in the history
  • Loading branch information
tshauck committed Mar 11, 2024
1 parent db51a5a commit e8a7793
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ jobs:
manylinux: auto
before-script-linux: |
# Update GCC to 13
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install -y gcc-13 g++-13
add-apt-repository -y ppa:ubuntu-toolchain-r/test
apt-get update
apt-get install -y gcc-13 g++-13
# Set GCC 13 as default
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 100
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 100
update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 100
- name: Build wheels (aarch64)
if: matrix.target == 'aarch64'
Expand Down

0 comments on commit e8a7793

Please sign in to comment.