mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
12 lines
235 B
Bash
12 lines
235 B
Bash
#!/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
|