diff options
author | Shauren <shauren.trinity@gmail.com> | 2023-01-01 00:26:53 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2023-01-01 00:26:53 +0100 |
commit | 0a1b40241a12b2b2f4549edf0ee263e91236145b (patch) | |
tree | d075da74ba9db89cfbaa83ffef8541ebcc687adb /.github | |
parent | ba9bbbc9d0c3b80d8954ad6390d23ae3d0f804b2 (diff) |
Build: Update required compilers to current debian stable and VS 2022
GCC: 10
Clang: 11
MSVC: 2022
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/gcc-build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/gcc-build.yml b/.github/workflows/gcc-build.yml index bfd23f08bc6..60e8028b5a7 100644 --- a/.github/workflows/gcc-build.yml +++ b/.github/workflows/gcc-build.yml @@ -11,8 +11,8 @@ jobs: - uses: actions/checkout@v2 - name: Dependencies run: | - sudo apt-get update && sudo apt-get install -yq libboost-all-dev g++-8 - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 100 --slave /usr/bin/g++ g++ /usr/bin/g++-8 + 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 - name: Setup run: | mkdir bin |