summaryrefslogtreecommitdiff
path: root/MAINTAINERS.md
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2022-09-04 15:26:47 +0200
committerNick Wellnhofer <wellnhofer@aevum.de>2022-09-04 20:27:27 +0200
commitefc0e85c02071a88a2ef5d1d0caace166790d645 (patch)
tree6b85dffebe398e51321a518657136ac211ca6fc5 /MAINTAINERS.md
parent02e12371964ed10c2c84ebb49760bc11b34913e1 (diff)
downloadlibxml2-efc0e85c02071a88a2ef5d1d0caace166790d645.tar.gz
Move Dockerfile to .gitlab-ci directory
Diffstat (limited to 'MAINTAINERS.md')
-rw-r--r--MAINTAINERS.md21
1 files changed, 3 insertions, 18 deletions
diff --git a/MAINTAINERS.md b/MAINTAINERS.md
index 89d00fb3..2d9204e8 100644
--- a/MAINTAINERS.md
+++ b/MAINTAINERS.md
@@ -56,25 +56,10 @@ xml@gnome.org.
## Updating the CI Docker image
Note that the CI image is used for libxslt as well. Run the following
-commands with the Dockerfile passed as heredoc:
+commands with the Dockerfile in the .gitlab-ci directory:
docker login registry.gitlab.gnome.org
-
- docker build -t registry.gitlab.gnome.org/gnome/libxml2 - <<'EOF'
- FROM ubuntu:22.04
- ENV DEBIAN_FRONTEND=noninteractive
- RUN apt-get update && \
- apt-get upgrade -y && \
- apt-get install -y --no-install-recommends \
- curl git ca-certificates \
- autoconf automake libtool pkg-config \
- make gcc clang llvm \
- zlib1g-dev liblzma-dev libgcrypt-dev \
- python2-dev python3-dev \
- cmake
- WORKDIR /tests
- RUN curl https://www.w3.org/XML/Test/xmlts20080827.tar.gz |tar xz
- EOF
-
+ docker build -t registry.gitlab.gnome.org/gnome/libxml2 - \
+ < .gitlab-ci/Dockerfile
docker push registry.gitlab.gnome.org/gnome/libxml2