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: jobs:
build-zshell: build-zshell:
runs-on: alpine runs-on: alpine
container: node:26-alpine container: archlinux:latest
steps: steps:
- name: Checkout - name: Checkout
@@ -14,23 +14,22 @@ jobs:
- name: Install tools - name: Install tools
run: | run: |
echo https://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories pacman -Syu --noconfirm
apk update pacman -S --noconfirm \
apk add --no-cache \ base-devel \
build-base \
cmake \ cmake \
ninja \ ninja \
pkgconf \ pkgconf \
qt6-qtbase-dev \ qt6-base \
qt6-qtdeclarative-dev \ qt6-declarative \
qt6-qtshadertools-dev \ qt6-shadertools \
qt6-qttools-dev \ qt6-tools \
pipewire-dev \ pipewire \
libqalculate-dev \ libqalculate \
glib-dev \ glib2 \
aubio-dev \ aubio \
cava \
git git
apk add --no-cache cava
- name: Configure - name: Configure
run: cmake -S . -B build -G Ninja run: cmake -S . -B build -G Ninja