Skip to content

Commit

Permalink
Replace reprepro by aptly
Browse files Browse the repository at this point in the history
  • Loading branch information
fauust committed Feb 7, 2024
1 parent 8200051 commit 076bba3
Showing 1 changed file with 1 addition and 22 deletions.
23 changes: 1 addition & 22 deletions ci_build_images/debian.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ RUN . /etc/os-release; \
&& apt-get -y build-dep -q mariadb-server \
&& apt-get -y install --no-install-recommends \
apt-utils \
aptly \
build-essential \
bzip2 \
ccache \
Expand Down Expand Up @@ -84,28 +85,6 @@ RUN . /etc/os-release; \
&& if [ "${VERSION_ID}" = 22.04 ]; then \
apt-get -y install --no-install-recommends clang-14 libpcre3-dev llvm; \
fi \
# see: https://jira.mariadb.org/browse/MDBF-637 \
&& if [ "${VERSION_ID}" = 22.04 ] && [ "$(arch)" != s390x ]; then \
case "$(arch)" in "x86_64") \
deb_arch="amd64"; \
;; \
"x86") \
deb_arch="i386" \
;; \
"aarch64") \
deb_arch="arm64" \
;; \
"ppc64le") \
deb_arch="ppc64el" \
;; \
esac; \
reprepro_version="5.4.3-1"; \
curl -skO "http://ftp.debian.org/debian/pool/main/r/reprepro/reprepro_${reprepro_version}_${deb_arch}.deb"; \
apt-get install -y --no-install-recommends "./reprepro_${reprepro_version}_${deb_arch}.deb"; \
rm -f "./reprepro_${reprepro_version}_${deb_arch}.deb"; \
else \
apt-get install -y --no-install-recommends reprepro; \
fi \
&& apt-get clean

ENV WSREP_PROVIDER=/usr/lib/galera/libgalera_smm.so

0 comments on commit 076bba3

Please sign in to comment.