Test that the distribution tarball is complete

This commit is contained in:
Richard Hansen 2020-07-01 15:51:29 -04:00
parent f0eb0850da
commit b9b594fcea
2 changed files with 71 additions and 0 deletions

View file

@ -27,6 +27,8 @@ jobs:
apt-get update && apt-get update &&
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
automake \ automake \
ca-certificates \
git \
libtest-warnings-perl \ libtest-warnings-perl \
make \ make \
; ;
@ -39,6 +41,8 @@ jobs:
run: make VERBOSE=1 check run: make VERBOSE=1 check
- name: distcheck - name: distcheck
run: make VERBOSE=1 distcheck run: make VERBOSE=1 distcheck
- name: distribution tarball is complete
run: ./.github/workflows/scripts/dist-tarball-check
test-centos6: test-centos6:
runs-on: ubuntu-latest runs-on: ubuntu-latest

67
.github/workflows/scripts/dist-tarball-check vendored Executable file
View file

@ -0,0 +1,67 @@
#!/bin/sh
pecho() { printf %s\\n "$*"; }
log() { pecho "$@"; }
warning() { log "::warning::$@"; }
error() { log "::error::$@"; }
fatal() { error "$@"; exit 1; }
try() { "$@" || fatal "'$@' failed"; }
# actions/checkout@v2 only makes a clone if Git is v2.18 or later, and this
# test requires a clone.
git_ver=$(try dpkg-query -f '${Version}' -W git) || exit 1
dpkg --compare-versions "${git_ver}" ge '1:2.18~' || {
warning "This test requires Git v2.18 or later"
exit 0
}
dist_tarball=$(ls ddclient-*.tar.gz) \
|| fatal "'make dist' must be run before this test"
tmpdir=$(try mktemp -d) || exit 1
log "Copying contents of Git repository..."
try git archive --format=tar --prefix=git-repo/ HEAD \
| try tar -C "${tmpdir}" -xv || exit 1
(
try cd "${tmpdir}"/git-repo
# Delete files checked into Git that shouldn't be in the distribution
# tarball.
try rm -rf \
.github \
.gitignore \
docs/ipv6-design-doc.md \
;
# TODO: Delete this next line once support for Automake 1.11 is dropped and
# tap-driver.sh is removed from the Git repository. It is deleted here to
# avoid a spurious diff.
try rm -f build-aux/tap-driver.sh
) || exit 1
log "Extracting distribution tarball..."
try tar -C "${tmpdir}" -xvzf "${dist_tarball}"
try mv "${tmpdir}/${dist_tarball%.tar.gz}" "${tmpdir}"/dist-tarball
(
try cd "${tmpdir}"/dist-tarball
# Delete generated files
try rm -rf \
Makefile.in \
aclocal.m4 \
build-aux/install-sh \
build-aux/missing \
build-aux/tap-driver.sh \
configure \
;
) || exit 1
log "Comparing Git repository with distribution tarball..."
cd "${tmpdir}"
diff -qNr git-repo dist-tarball >/dev/null || {
error "Unexpected diff between the repo and the distribution tarball."
error "You may need to add a file to EXTRA_DIST in Makefile.am."
error "Diff output:"
diff -uNr git-repo dist-tarball \
| while IFS= read -r line; do error "${line}"; done
exit 1
}
log "No difference"