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 container: archlinux:latest
steps: steps:
- name: Install node & git - name: Bootstrap pacman
run: | run: |
pacman-key --init pacman-key --init
pacman-key --populate archlinux pacman-key --populate archlinux
pacman -Syu --noconfirm nodejs git pacman -Syu --noconfirm
- name: Checkout
uses: actions/checkout@v4
- name: Install build tools - name: Install build tools
run: pacman -S --noconfirm \ run: pacman -S --noconfirm \
@@ -24,16 +21,26 @@ jobs:
cmake \ cmake \
ninja \ ninja \
pkgconf \ pkgconf \
sudo \
git \
qt6-base \ qt6-base \
qt6-declarative \ qt6-declarative \
qt6-shadertools \ qt6-shadertools \
qt6-tools \
pipewire \ pipewire \
libqalculate \ libqalculate \
glib2 \ glib2 \
aubio \ aubio \
cava 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 - name: Configure
run: cmake -S . -B build -G Ninja run: cmake -S . -B build -G Ninja