]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
CI: GCC 13 install fails, so disable that particular ppa
authorPhilip H. <47042125+pheiduck@users.noreply.github.com>
Fri, 18 Apr 2025 16:48:53 +0000 (18:48 +0200)
committerChristian Brabandt <cb@256bit.org>
Fri, 18 Apr 2025 16:50:50 +0000 (18:50 +0200)
closes: #17149

Signed-off-by: Philip H. <47042125+pheiduck@users.noreply.github.com>
Signed-off-by: Christian Brabandt <cb@256bit.org>
.github/workflows/ci.yml

index b35c3b65ef13bb22dcab5e663a7448e566fd14d8..fc6cd9663e3ac80af9654f6bf923ab5104bf111f 100644 (file)
@@ -21,7 +21,7 @@ jobs:
 
     env:
       CC: ${{ matrix.compiler }}
-      GCC_VER: 13
+      GCC_VER: 14
       CLANG_VER: 20
       TEST: test
       SRCDIR: ./src
@@ -149,7 +149,8 @@ jobs:
         if:  matrix.compiler == 'gcc'
         run: |
           # 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 install -y gcc-${{ env.GCC_VER }}:${{ matrix.architecture }}
           sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${{ env.GCC_VER }} 100