mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
CI: GCC 13 install fails, so disable that particular ppa
closes: #17149 Signed-off-by: Philip H. <47042125+pheiduck@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
0ed11ba223
commit
13960a8779
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
@@ -21,7 +21,7 @@ jobs:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
CC: ${{ matrix.compiler }}
|
CC: ${{ matrix.compiler }}
|
||||||
GCC_VER: 13
|
GCC_VER: 14
|
||||||
CLANG_VER: 20
|
CLANG_VER: 20
|
||||||
TEST: test
|
TEST: test
|
||||||
SRCDIR: ./src
|
SRCDIR: ./src
|
||||||
@@ -149,7 +149,8 @@ jobs:
|
|||||||
if: matrix.compiler == 'gcc'
|
if: matrix.compiler == 'gcc'
|
||||||
run: |
|
run: |
|
||||||
# ubuntu-toolchain-r/test PPA for gcc-13 compiler
|
# ubuntu-toolchain-r/test PPA for gcc-13 compiler
|
||||||
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
# disabled because the installation failed, causing test failures
|
||||||
|
# sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
||||||
sudo apt-get update -y
|
sudo apt-get update -y
|
||||||
sudo apt-get install -y gcc-${{ env.GCC_VER }}:${{ matrix.architecture }}
|
sudo apt-get install -y gcc-${{ env.GCC_VER }}:${{ matrix.architecture }}
|
||||||
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ env.GCC_VER }} 100
|
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ env.GCC_VER }} 100
|
||||||
|
Reference in New Issue
Block a user