Skip to content

Commit 9526767

Browse files
committed
Use newer GCC in GHA Linux build
1 parent dba7d7d commit 9526767

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,19 @@
11
name: Build
22
on: [push, pull_request]
3+
env:
4+
LINUX_GCC_VERSION: 13
35

46
jobs:
57
linux:
68
name: Linux
79
runs-on: ubuntu-22.04
810
steps:
911
- uses: actions/checkout@v4
12+
- name: Install Tools
13+
run: |
14+
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
15+
sudo apt-get update
16+
sudo apt install gcc-${{ env.LINUX_GCC_VERSION }}
1017
- name: Install Dependencies
1118
run: |
1219
sudo apt-get update

0 commit comments

Comments
 (0)