adjusted CMake file to not require Cava
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
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
This commit is contained in:
@@ -9,7 +9,7 @@ pkg_check_modules(Cava IMPORTED_TARGET libcava QUIET)
|
||||
pkg_check_modules(GLIB REQUIRED glib-2.0 gobject-2.0 gio-2.0)
|
||||
|
||||
if(NOT Cava_FOUND)
|
||||
pkg_check_modules(Cava IMPORTED_TARGET cava REQUIRED)
|
||||
pkg_check_modules(Cava IMPORTED_TARGET cava QUIET)
|
||||
endif()
|
||||
|
||||
if(NOT TARGET Sensors::Sensors)
|
||||
|
||||
+19
-20
@@ -1,30 +1,29 @@
|
||||
FROM alpine:edge
|
||||
FROM archlinux:latest
|
||||
|
||||
RUN pacman -Syu --noconfirm
|
||||
|
||||
# Build toolchain
|
||||
RUN apk add --no-cache \
|
||||
alpine-sdk \
|
||||
RUN pacman -S --noconfirm \
|
||||
base-devel \
|
||||
cmake \
|
||||
ninja \
|
||||
clang22 \
|
||||
clang22-extra-tools \
|
||||
clang22-dev \
|
||||
llvm22-dev \
|
||||
llvm-dev \
|
||||
clang \
|
||||
lld \
|
||||
pkgconf \
|
||||
nodejs \
|
||||
git
|
||||
|
||||
# Qt6
|
||||
RUN apk add --no-cache \
|
||||
qt6-qtbase-dev \
|
||||
qt6-qtdeclarative-dev \
|
||||
qt6-qtshadertools-dev \
|
||||
qt6-qt5compat-dev
|
||||
RUN pacman -S --noconfirm \
|
||||
qt6-base \
|
||||
qt6-declarative \
|
||||
qt6-shadertools \
|
||||
qt6-5compat \
|
||||
qt6-canvaspainter
|
||||
|
||||
# Project-specific dependencies
|
||||
RUN apk add --no-cache \
|
||||
libqalculate-dev \
|
||||
pipewire-dev \
|
||||
aubio-dev \
|
||||
lm-sensors-dev \
|
||||
glib-dev
|
||||
RUN pacman -S --noconfirm \
|
||||
libqalculate \
|
||||
pipewire \
|
||||
aubio \
|
||||
lm_sensors \
|
||||
glib2
|
||||
|
||||
Reference in New Issue
Block a user