comparison .github/workflows/ci.yml @ 34453:607deb7b6a3b

CI: enable apt upgrade on github runners again to fix i386 build Commit: https://github.com/vim/vim/commit/0fdd18596f504774bc5993d029d68eecea827439 Author: Philip H <47042125+pheiduck@users.noreply.github.com> Date: Wed Feb 28 23:25:08 2024 +0100 CI: enable apt upgrade on github runners again to fix i386 build This reverts commit 7f630e6f358275d0bce9fea2665a2763edbf6a0e which reverted 7349c5160ab63d0737050a6b4da3e407ab0cfeb0 Let's see how many more iterations of reverting a commit we can achieve... closes: #14113 Signed-off-by: Philip H <47042125+pheiduck@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
author Christian Brabandt <cb@256bit.org>
date Wed, 28 Feb 2024 23:45:02 +0100
parents f8dc9a9f5727
children d91ac228d7df
comparison
equal deleted inserted replaced
34452:920a98c2e253 34453:607deb7b6a3b
122 libsodium-dev \ 122 libsodium-dev \
123 attr \ 123 attr \
124 libattr1-dev 124 libattr1-dev
125 ) 125 )
126 fi 126 fi
127 sudo apt-get update && sudo apt-get install -y "${PKGS[@]}" 127 sudo apt-get update && sudo apt-get upgrade && sudo apt-get install -y "${PKGS[@]}"
128 128
129 - name: Install gcc-${{ env.GCC_VER }} 129 - name: Install gcc-${{ env.GCC_VER }}
130 if: matrix.compiler == 'gcc' 130 if: matrix.compiler == 'gcc'
131 run: | 131 run: |
132 sudo apt-get install -y gcc-${{ env.GCC_VER }}:${{ matrix.architecture }} 132 sudo apt-get install -y gcc-${{ env.GCC_VER }}:${{ matrix.architecture }}