There was an error while loading. Please reload this page.
1 parent dba7d7d commit 9526767Copy full SHA for 9526767
1 file changed
.github/workflows/build.yml
@@ -1,12 +1,19 @@
1
name: Build
2
on: [push, pull_request]
3
+env:
4
+ LINUX_GCC_VERSION: 13
5
6
jobs:
7
linux:
8
name: Linux
9
runs-on: ubuntu-22.04
10
steps:
11
- 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 }}
17
- name: Install Dependencies
18
run: |
19
sudo apt-get update
0 commit comments