diff options
author | Philip H <47042125+pheiduck@users.noreply.github.com> | 2022-04-16 20:04:30 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-04-16 20:04:30 +0100 |
commit | d2edee5cf3bd1eb69d88a12bcab33fc4228e83c0 (patch) | |
tree | 2c3b9ced9b934d18402871bc9942ac62f8f56e37 /.github | |
parent | f50808ed135ab973296bca515ae4029b321afe47 (diff) | |
download | vim-git-d2edee5cf3bd1eb69d88a12bcab33fc4228e83c0.tar.gz |
patch 8.2.4764: CI uses an older gcc versionv8.2.4764
Problem: CI uses an older gcc version.
Solution: Use GCC 11. (closes #10185)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 700756603..4bb5e29fc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,6 +21,7 @@ jobs: TEST: test SRCDIR: ./src LEAK_CFLAGS: -DEXITFREE + CFLAGS: -Wno-error=deprecated-declarations LOG_DIR: ${{ github.workspace }}/logs TERM: xterm DISPLAY: ':99' @@ -88,13 +89,21 @@ jobs: fi sudo apt update && sudo apt install -y "${PKGS[@]}" + - name: Install gcc-11 + if: matrix.compiler == 'gcc' + run: | + sudo add-apt-repository ppa:ubuntu-toolchain-r/test + sudo apt install -y gcc-11 + sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 100 + sudo update-alternatives --set gcc /usr/bin/gcc-11 + - name: Install clang-14 if: matrix.compiler == 'clang' run: | wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add - . /etc/lsb-release sudo add-apt-repository -y "deb http://apt.llvm.org/${DISTRIB_CODENAME}/ llvm-toolchain-${DISTRIB_CODENAME}-14 main" - sudo apt-get install -y clang-14 llvm-14 + sudo apt install -y clang-14 llvm-14 sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-14 100 sudo update-alternatives --set clang /usr/bin/clang-14 sudo update-alternatives --install /usr/bin/llvm-cov llvm-cov /usr/bin/llvm-cov-14 100 |