Build (C++) / build (pull_request) Failing after 4s
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 17s
Python / lint-format (pull_request) Successful in 22s
Python / test (pull_request) Successful in 34s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m12s
30 lines
450 B
Docker
30 lines
450 B
Docker
FROM archlinux:latest
|
|
|
|
RUN pacman -Syu --noconfirm
|
|
|
|
# Build toolchain
|
|
RUN pacman -S --noconfirm \
|
|
base-devel \
|
|
cmake \
|
|
ninja \
|
|
clang \
|
|
lld \
|
|
nodejs \
|
|
git
|
|
|
|
# Qt6
|
|
RUN pacman -S --noconfirm \
|
|
qt6-base \
|
|
qt6-declarative \
|
|
qt6-shadertools \
|
|
qt6-5compat \
|
|
qt6-canvaspainter
|
|
|
|
# Project-specific dependencies
|
|
RUN pacman -S --noconfirm \
|
|
libqalculate \
|
|
pipewire \
|
|
aubio \
|
|
lm_sensors \
|
|
glib2
|