We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3910e63 commit 2cf6d4bCopy full SHA for 2cf6d4b
.gitlab-ci.yml
@@ -286,6 +286,14 @@ cmake:linux:gcc:shared:
286
CC: gcc
287
SUFFIX: linux-gcc-shared
288
289
+dist:
290
+ image: registry.gitlab.gnome.org/gnome/libxml2
291
+ script:
292
+ - sh .gitlab-ci/dist.sh
293
+ artifacts:
294
+ paths:
295
+ - libxml2-dist/*.tar.xz
296
+
297
pages:
298
script:
299
- mkdir -p public
.gitlab-ci/dist.sh
@@ -0,0 +1,11 @@
1
+#!/bin/sh
2
3
+set -e
4
5
+mkdir -p libxml2-dist
6
+cd libxml2-dist
7
+sh ../autogen.sh
8
+make distcheck V=1 DISTCHECK_CONFIGURE_FLAGS='--with-legacy'
9
+if [ -z "$CI_COMMIT_TAG" ]; then
10
+ mv libxml2-*.tar.xz libxml2-git-$CI_COMMIT_SHORT_SHA.tar.xz
11
+fi
0 commit comments