1
0
Fork 0

Improving builds

This commit is contained in:
retropikzel 2025-12-12 16:24:26 +02:00
parent 4966d3f09f
commit 82a14c903e
2 changed files with 3 additions and 1 deletions

1
Jenkinsfile vendored
View File

@ -59,6 +59,7 @@ pipeline {
stage('.deb package') {
steps {
sh "make clean"
sh "make deb"
archiveArtifacts artifacts: '*.deb', allowEmptyArchive: true, fingerprint: true, onlyIfSuccessful: true
}

View File

@ -50,6 +50,7 @@ deb: build-gauche
printf "Package: compile-scheme\nArchitecture: amd64\nDepends: gauche\nVersion: ${VERSION}\nSection: misc\nMaintainer: Retropikzel <retropikzel@iki.fi>\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: