gitlab-ci: Don't cache object files.
authorRalph Giles <giles@thaumas.net>
Wed, 10 Jun 2020 21:30:18 +0000 (14:30 -0700)
committerRalph Giles <giles@thaumas.net>
Wed, 10 Jun 2020 21:30:18 +0000 (14:30 -0700)
This could only help with the initial build, not `make distcheck`
and since config.h is generated fresh for each job, everything
was remade anyway. Thanks to ePirat for pointing out the issue.

.gitlab-ci.yml

index 411b47c..065412e 100644 (file)
@@ -14,10 +14,6 @@ autoconf:
     - ./configure
     - make
     - make distcheck
-  cache:
-    paths:
-      - "lib/*.o"
-      - "lib/.libs/*.o"
 
 cmake:
   stage: build