Skip to content

Commit

Permalink
change to gcc-8 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
drcut committed Aug 6, 2024
1 parent 2e99bda commit 703a8c6
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,15 @@ concurrency:

jobs:
build:
runs-on: ubuntu-latest
compiler: gcc-8
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install GCC 8
run: |
sudo apt-get update
sudo apt install gcc-8 g++-8
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 80
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 80
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1
with:
Expand Down

0 comments on commit 703a8c6

Please sign in to comment.