dev: fix Arch Linux deps (#6553)

Sometimes, if we're building at the wrong time, we might be building
Qt with the wrong version of a dependent library (e.g. pcre2 in this
        case)

Make sure we always upgrade the system before attempting to build
Chatterino
This commit is contained in:
pajlada
2025-10-25 13:28:57 +02:00
committed by GitHub
parent 4b1266dba3
commit 6873b540b1
2 changed files with 3 additions and 3 deletions
+2 -3
View File
@@ -28,9 +28,8 @@ jobs:
steps:
- name: Install dependencies
run: |
sudo pacman -Sy
sudo pacman -S --noconfirm 'qt6-base' 'qt6-tools' 'boost-libs' 'openssl' 'qt6-imageformats' 'qtkeychain-qt6' 'qt6-svg' 'libnotify'
sudo pacman -S --noconfirm 'git' 'boost' 'cmake' 'benchmark'
sudo pacman -Syu --noconfirm
sudo pacman -S --noconfirm qt6-base qt6-tools boost-libs qt6-imageformats qtkeychain-qt6 qt6-svg libnotify git boost cmake benchmark
- uses: actions/checkout@v5
with: