update command in later step
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 19s
Python / lint-format (pull_request) Successful in 40s
Python / test (pull_request) Successful in 1m31s
Lint & Format (C++) / lint-format (pull_request) Failing after 1m39s
Lint & Format (Rust) / lint-format (pull_request) Successful in 2m1s
Build (C++) / build-zshell (pull_request) Failing after 2m26s

This commit is contained in:
2026-06-01 22:09:23 +02:00
parent 6c09c0412a
commit 1fbe7c328b
+3 -7
View File
@@ -9,14 +9,11 @@ jobs:
container: archlinux:latest
steps:
- name: Bootstrap pacman
- name: Install all packages
run: |
pacman-key --init
pacman-key --populate archlinux
pacman -Syu --noconfirm
- name: Install build tools
run: pacman -S --noconfirm \
pacman -Syu --noconfirm \
base-devel \
cmake \
ninja \
@@ -38,8 +35,7 @@ jobs:
passwd -d builduser
echo 'builduser ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers
sudo -u builduser git clone https://aur.archlinux.org/libcava.git /tmp/libcava
cd /tmp/libcava
sudo -u builduser makepkg -si --noconfirm
sudo -u builduser makepkg -si --noconfirm -p /tmp/libcava/PKGBUILD
- name: Configure
run: cmake -S . -B build -G Ninja