alpine -> arch for cpp build workflow
Build (C++) / build-zshell (pull_request) Failing after 2s
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 27s
Python / lint-format (pull_request) Successful in 40s
Lint & Format (C++) / lint-format (pull_request) Failing after 1m6s
Python / test (pull_request) Successful in 1m6s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m23s

This commit is contained in:
2026-06-01 21:59:03 +02:00
parent 5551ec1b54
commit 0ef1e94f82
+13 -14
View File
@@ -6,7 +6,7 @@ on:
jobs:
build-zshell:
runs-on: alpine
container: node:26-alpine
container: archlinux:latest
steps:
- name: Checkout
@@ -14,23 +14,22 @@ jobs:
- name: Install tools
run: |
echo https://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories
apk update
apk add --no-cache \
build-base \
pacman -Syu --noconfirm
pacman -S --noconfirm \
base-devel \
cmake \
ninja \
pkgconf \
qt6-qtbase-dev \
qt6-qtdeclarative-dev \
qt6-qtshadertools-dev \
qt6-qttools-dev \
pipewire-dev \
libqalculate-dev \
glib-dev \
aubio-dev \
qt6-base \
qt6-declarative \
qt6-shadertools \
qt6-tools \
pipewire \
libqalculate \
glib2 \
aubio \
cava \
git
apk add --no-cache cava
- name: Configure
run: cmake -S . -B build -G Ninja