From 82a14c903ea2c13c4728a9bfa78d591502ddf423 Mon Sep 17 00:00:00 2001 From: retropikzel Date: Fri, 12 Dec 2025 16:24:26 +0200 Subject: [PATCH] Improving builds --- Jenkinsfile | 3 ++- Makefile | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7fec755..9d63670 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -59,8 +59,9 @@ pipeline { stage('.deb package') { steps { + sh "make clean" sh "make deb" - archiveArtifacts artifacts: '*.deb', allowEmptyArchive: true, fingerprint: true, onlyIfSuccessful: true + archiveArtifacts artifacts: '*.deb', allowEmptyArchive: true, fingerprint: true, onlyIfSuccessful: true } } } diff --git a/Makefile b/Makefile index fb6c312..b731ba0 100644 --- a/Makefile +++ b/Makefile @@ -50,6 +50,7 @@ deb: build-gauche printf "Package: compile-scheme\nArchitecture: amd64\nDepends: gauche\nVersion: ${VERSION}\nSection: misc\nMaintainer: Retropikzel \nDescription: SRFI 138: Compiling Scheme programs to executables - Implementation\n" \ > deb/DEBIAN/control dpkg-deb -b deb + cp deb.deb compile-scheme-latest.deb mv deb.deb compile-scheme-${VERSION}.deb build-gauche: