Skip to content

Commit

Permalink
Fix runner
Browse files Browse the repository at this point in the history
Summary:
Thanks @clee

Test Plan:

Reviewers:

Subscribers:

Tasks:

Tags:
  • Loading branch information
c-p-i-o committed Dec 27, 2024
1 parent d31256d commit 7499fbb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build_linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
openssl: [true, false]
gcc-version: [14]
gcc-version: [7]

steps:
- name: Checkout code
Expand Down Expand Up @@ -47,6 +47,7 @@ jobs:
run: |
sudo add-apt-repository universe
sudo apt-get update
sudo apt install build-essential
sudo apt-get install -y gcc-${{ matrix.gcc-version }} g++-${{ matrix.gcc-version }}
export CC=gcc-${{ matrix.gcc-version }}
export CXX=g++-${{ matrix.gcc-version }}
Expand Down

0 comments on commit 7499fbb

Please sign in to comment.