Skip to content

Commit 94b68b6

Browse files
committed
ci: add buildroot dependencies to install list
This updates the environment to include all required Buildroot packages to prevent missing dependency errors during builds. Fixes: #3029 Signed-off-by: Ozan Durgut <ozan.durgut@analog.com>
1 parent 7d9eeda commit 94b68b6

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

container/Containerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ COPY install-compilers.sh .
2626
RUN chmod +x install-compilers.sh ; ./install-compilers.sh
2727
COPY install-extra.sh .
2828
RUN chmod +x install-extra.sh ; ./install-extra.sh
29+
COPY install-buildroot.sh .
30+
RUN chmod +x install-buildroot.sh ; ./install-buildroot.sh
2931

3032
RUN mkdir -p /usr/local/bin
3133
WORKDIR /usr/local/bin

container/install-buildroot.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
# for: build-doc-*
3+
4+
set -e
5+
6+
# Install packages required by Buildroot
7+
zypper install -y --no-recommends \
8+
gcc gcc-c++ make \
9+
glibc-devel libstdc++-devel binutils rpm-build \
10+
git bc unzip file rsync \
11+
cpio wget python3 python3-pip

0 commit comments

Comments
 (0)