Compare commits

...

2 commits

Author SHA1 Message Date
84e5e814fe fix(deps): add deps in docker builder
Some checks failed
ci/woodpecker/push/build Pipeline failed
2025-09-22 20:26:16 +02:00
df4071bfed chore(ci): make step sequential / remove depends_on directive 2025-09-22 20:25:34 +02:00
2 changed files with 13 additions and 4 deletions

View file

@ -30,7 +30,6 @@ steps:
when:
- event: push
branch: ${CI_REPO_DEFAULT_BRANCH}
depends_on: compile
commands:
- make dpkg
environment:

View file

@ -2,6 +2,16 @@
FROM rust:1.90
RUN apt-get update && \
apt-get install -y curl \
# other packages to build
libpipewire-0.3-dev
apt-get install -y gcc \
clang \
libudev-dev libgbm-dev \
libxkbcommon-dev \
libegl1-mesa-dev \
libwayland-dev \
libinput-dev \
libdbus-1-dev \
libsystemd-dev \
libseat-dev \
libpipewire-0.3-dev \
libpango1.0-dev \
libdisplay-info-dev