Also build .deb package
This commit is contained in:
parent
d37b4b90b5
commit
00351e0c4b
|
|
@ -57,5 +57,12 @@ pipeline {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
stage('.deb package') {
|
||||||
|
steps {
|
||||||
|
sh "make deb"
|
||||||
|
archiveArtifacts artifacts: '*.deb', allowEmptyArchive: true, fingerprint: true, onlyIfSuccessful: true
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
2
Makefile
2
Makefile
|
|
@ -1,7 +1,7 @@
|
||||||
.SILENT: test-r6rs test-r6rs-docker test-r7rs test-r7rs-docker
|
.SILENT: test-r6rs test-r6rs-docker test-r7rs test-r7rs-docker
|
||||||
PREFIX=/usr/local
|
PREFIX=/usr/local
|
||||||
SCHEME=chibi
|
SCHEME=chibi
|
||||||
VERSION=1.0.0
|
VERSION=1.1.0
|
||||||
R6RSTMP=.tmp/${SCHEME}-r6rs
|
R6RSTMP=.tmp/${SCHEME}-r6rs
|
||||||
R7RSTMP=.tmp/${SCHEME}-r7rs
|
R7RSTMP=.tmp/${SCHEME}-r7rs
|
||||||
DOCKERTAG=compile-scheme-test-${SCHEME}
|
DOCKERTAG=compile-scheme-test-${SCHEME}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue