Skip to content

Commit

Permalink
updated workflow to use GCC13
Browse files Browse the repository at this point in the history
  • Loading branch information
mgerhold committed Nov 16, 2023
1 parent 4dcf680 commit 8d95d00
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,17 @@ jobs:
with:
python-version: '3.11'

- name: Install C++ build tools and CMake
- name: Install GCC 13
run: |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt-get update
sudo apt-get install -y build-essential cmake
sudo apt-get install -y gcc-13 g++-13
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
- name: Install CMake
run: |
sudo apt-get install -y cmake
- name: Check out repository
uses: actions/checkout@v2
Expand Down

0 comments on commit 8d95d00

Please sign in to comment.