From 5ca4ce6fc0bd266628150cc220b5f2a19a61a61c Mon Sep 17 00:00:00 2001 From: Nick Wellnhofer Date: Mon, 9 Dec 2024 23:28:38 +0100 Subject: [PATCH] gitlab-ci: Add "dist" job to build distribution tarball Prepare for GNOME Release Service. --- .gitlab-ci.yml | 22 ++++++++++++++++++++++ .gitlab-ci/dist.sh | 11 +++++++++++ 2 files changed, 33 insertions(+) create mode 100644 .gitlab-ci/dist.sh diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9c0ccd95..9ed3f6b5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,3 +1,7 @@ +include: + - project: 'Infrastructure/gnome-release-service-ci-templates' + file: 'release-module.yml' + .test: image: registry.gitlab.gnome.org/gnome/libxml2 variables: @@ -286,6 +290,24 @@ 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 + +# TODO: Strip "v" from $CI_COMMIT_TAG + +#release: +# stage: release +# variables: +# TARBALL_ARTIFACT_PATH: libxml2-dist/$CI_PROJECT_NAME-$CI_COMMIT_TAG.tar.xz +# extends: .release-module +# rules: +# - if: $CI_COMMIT_TAG + pages: script: - mkdir -p public diff --git a/.gitlab-ci/dist.sh b/.gitlab-ci/dist.sh new file mode 100644 index 00000000..59c32425 --- /dev/null +++ b/.gitlab-ci/dist.sh @@ -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