summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhilip H <47042125+pheiduck@users.noreply.github.com>2024-02-28 23:25:08 +0100
committerChristian Brabandt <cb@256bit.org>2024-02-28 23:28:34 +0100
commit0fdd18596f504774bc5993d029d68eecea827439 (patch)
treec499e900bf42999924c6ae6946fcc2cadf5575da
parent19b718828d8d5fab52d94c6cdba694641879ab38 (diff)
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>
-rw-r--r--.github/workflows/ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a641ef563e..d2148f7f1b 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -124,7 +124,7 @@ jobs:
libattr1-dev
)
fi
- sudo apt-get update && sudo apt-get install -y "${PKGS[@]}"
+ sudo apt-get update && sudo apt-get upgrade && sudo apt-get install -y "${PKGS[@]}"
- name: Install gcc-${{ env.GCC_VER }}
if: matrix.compiler == 'gcc'