gitlab-ci: Add "dist" job to build distribution tarball

Prepare for GNOME Release Service.
This commit is contained in:
Nick Wellnhofer 2024-12-09 23:28:38 +01:00
parent 3910e639bc
commit 2cf6d4b78e
2 changed files with 19 additions and 0 deletions

View File

@ -286,6 +286,14 @@ cmake:linux:gcc:shared:
CC: gcc
SUFFIX: linux-gcc-shared
dist:
image: registry.gitlab.gnome.org/gnome/libxml2
script:
- sh .gitlab-ci/dist.sh
artifacts:
paths:
- libxml2-dist/*.tar.xz
pages:
script:
- mkdir -p public

11
.gitlab-ci/dist.sh Normal file
View File

@ -0,0 +1,11 @@
#!/bin/sh
set -e
mkdir -p libxml2-dist
cd libxml2-dist
sh ../autogen.sh
make distcheck V=1 DISTCHECK_CONFIGURE_FLAGS='--with-legacy'
if [ -z "$CI_COMMIT_TAG" ]; then
mv libxml2-*.tar.xz libxml2-git-$CI_COMMIT_SHORT_SHA.tar.xz
fi