Browse code

Disable check part of making the tar.gz distribution

We run a set of from-source builds that use the tarball.
Distcheck is being problematic, but if all the from-source builds work
correctly, that may suffice to check the dist.

Micah Snyder authored on 2024/08/29 23:41:08
Showing 1 changed files
... ...
@@ -81,7 +81,7 @@ node('docker') {
81 81
                     sh """# Make Dist
82 82
                         if [ -f '../autogen.sh' ] ; then /bin/chmod +x ../autogen.sh && ../autogen.sh ; fi
83 83
                         ../configure --enable-milter --disable-clamav --disable-silent-rules --enable-llvm --with-system-llvm=no
84
-                        make distcheck
84
+                        make dist
85 85
                         mv clamav-${params.VERSION}*.tar.gz clamav-${params.VERSION}.tar.gz || true"""
86 86
                     archiveArtifacts(artifacts: "clamav-${params.VERSION}.tar.gz", onlyIfSuccessful: true)
87 87
                 }