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