removal node, fully unnecessary
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 19s
Build (C++) / build-zshell (pull_request) Failing after 25s
Python / lint-format (pull_request) Successful in 28s
Python / test (pull_request) Successful in 1m5s
Lint & Format (C++) / lint-format (pull_request) Failing after 1m9s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m12s

This commit is contained in:
2026-06-01 22:07:47 +02:00
parent e3b139ad3d
commit 6c09c0412a
+13 -6
View File
@@ -9,14 +9,11 @@ jobs:
container: archlinux:latest
steps:
- name: Install node & git
- name: Bootstrap pacman
run: |
pacman-key --init
pacman-key --populate archlinux
pacman -Syu --noconfirm nodejs git
- name: Checkout
uses: actions/checkout@v4
pacman -Syu --noconfirm
- name: Install build tools
run: pacman -S --noconfirm \
@@ -24,16 +21,26 @@ jobs:
cmake \
ninja \
pkgconf \
sudo \
git \
qt6-base \
qt6-declarative \
qt6-shadertools \
qt6-tools \
pipewire \
libqalculate \
glib2 \
aubio \
cava
- name: Install libcava (AUR)
run: |
useradd -m builduser
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
- name: Configure
run: cmake -S . -B build -G Ninja