1
0
Fork 0

Merge pull request 'Improving builds' (#14) from main into release

Reviewed-on: https://codeberg.org/retropikzel/compile-scheme/pulls/14
This commit is contained in:
retropikzel 2025-12-12 16:51:12 +01:00
commit a38bf92966
2 changed files with 3 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -59,8 +59,9 @@ pipeline {
stage('.deb package') { stage('.deb package') {
steps { steps {
sh "make clean"
sh "make deb" sh "make deb"
archiveArtifacts artifacts: '*.deb', allowEmptyArchive: true, fingerprint: true, onlyIfSuccessful: true 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" \ 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 > deb/DEBIAN/control
dpkg-deb -b deb dpkg-deb -b deb
cp deb.deb compile-scheme-latest.deb
mv deb.deb compile-scheme-${VERSION}.deb mv deb.deb compile-scheme-${VERSION}.deb
build-gauche: build-gauche: