Improving builds
This commit is contained in:
parent
4966d3f09f
commit
82a14c903e
|
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
1
Makefile
1
Makefile
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Reference in New Issue