CI/CD for build test; includes dockerbuild to avoid docker redownloading deps. avoid-c-arrays removed
Build (C++) / build (pull_request) Failing after 1s
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 11s
Python / lint-format (pull_request) Successful in 17s
Python / test (pull_request) Successful in 31s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m7s
Build (C++) / build (pull_request) Failing after 1s
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 11s
Python / lint-format (pull_request) Successful in 17s
Python / test (pull_request) Successful in 31s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m7s
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
FROM alpine:edge
|
||||
|
||||
# Build toolchain
|
||||
RUN apk add --no-cache \
|
||||
alpine-sdk \
|
||||
cmake \
|
||||
ninja \
|
||||
clang22 \
|
||||
clang22-extra-tools \
|
||||
clang22-dev \
|
||||
llvm22-dev \
|
||||
llvm-dev \
|
||||
lld \
|
||||
pkgconf \
|
||||
git
|
||||
|
||||
# Qt6
|
||||
RUN apk add --no-cache \
|
||||
qt6-qtbase-dev \
|
||||
qt6-qtdeclarative-dev \
|
||||
qt6-qtshadertools-dev \
|
||||
qt6-qt5compat-dev
|
||||
|
||||
# Project-specific dependencies
|
||||
RUN apk add --no-cache \
|
||||
libqalculate-dev \
|
||||
pipewire-dev \
|
||||
aubio-dev \
|
||||
lm-sensors-dev \
|
||||
glib-dev
|
||||
Reference in New Issue
Block a user