From: Michał Kępień Date: Tue, 15 Oct 2019 18:49:08 +0000 (+0200) Subject: Fix artifacts created by the "autoreconf" CI job X-Git-Tag: v9.15.6~60^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e83b322f7f2c9e533319e250455bc12f752b4998;p=thirdparty%2Fbind9.git Fix artifacts created by the "autoreconf" CI job The intended purpose of the "autoreconf:sid:amd64" GitLab CI job is to run "autoreconf -fi" and then pass the updated files on to subsequent non-Windows build jobs. However, the artifacts currently created by that job only include files which are not tracked by Git. Since we currently do track e.g. "configure" with Git, the aforementioned job is essentially a no-op. Fix by manually specifying the files generated by the "autoreconf:sid:amd64" job that should be passed on to subsequent build jobs. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b9ec003c693..28ec20449eb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -146,7 +146,11 @@ stages: script: - autoreconf -fi artifacts: - untracked: true + paths: + - aclocal.m4 + - configure + - ltmain.sh + - m4/libtool.m4 expire_in: "1 week" .configure: &configure |