diff options
author | Shauren <shauren.trinity@gmail.com> | 2024-04-10 13:52:06 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2024-04-10 13:52:06 +0200 |
commit | 16853af7c84b1204357333db399100604ab6cb29 (patch) | |
tree | 6b06d92fa325b48c979a0b7a88e79c004abe074a /.github | |
parent | 58839b7c18f4d0662ee407887ec1323040420d5a (diff) |
Build: Update required GCC version to 11.1
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/gcc-build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/gcc-build.yml b/.github/workflows/gcc-build.yml index 60e8028b5a7..4f7b5818def 100644 --- a/.github/workflows/gcc-build.yml +++ b/.github/workflows/gcc-build.yml @@ -6,13 +6,13 @@ on: jobs: build: - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v2 - name: Dependencies run: | - sudo apt-get update && sudo apt-get install -yq libboost-all-dev g++-10 - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 100 --slave /usr/bin/g++ g++ /usr/bin/g++-10 + sudo apt-get update && sudo apt-get install -yq libboost-all-dev g++-11 + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 100 --slave /usr/bin/g++ g++ /usr/bin/g++-11 - name: Setup run: | mkdir bin |