]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Fix artifacts created by the "autoreconf" CI job
authorMichał Kępień <michal@isc.org>
Tue, 15 Oct 2019 18:49:08 +0000 (20:49 +0200)
committerMichał Kępień <michal@isc.org>
Tue, 15 Oct 2019 18:49:39 +0000 (20:49 +0200)
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.

(cherry picked from commit e83b322f7f2c9e533319e250455bc12f752b4998)

.gitlab-ci.yml

index 8789879b05ec5cef65aded916b5ee18d3394031c..dbcb51fdc9b2bb123765491ec804d075b68e4c62 100644 (file)
@@ -138,7 +138,11 @@ stages:
   script:
     - autoreconf -fi
   artifacts:
-    untracked: true
+    paths:
+      - aclocal.m4
+      - configure
+      - ltmain.sh
+      - m4/libtool.m4
     expire_in: "1 week"
 
 .configure: &configure |