New builds
This commit is contained in:
parent
bde366aee3
commit
6bf8d5989b
|
|
@ -1,6 +1,6 @@
|
||||||
pipeline {
|
pipeline {
|
||||||
agent {
|
agent {
|
||||||
label 'agent1'
|
label 'docker-x86_64'
|
||||||
}
|
}
|
||||||
options {
|
options {
|
||||||
disableConcurrentBuilds()
|
disableConcurrentBuilds()
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,11 @@
|
||||||
(lambda (scheme)
|
(lambda (scheme)
|
||||||
(list (string-append "make SCHEME=" scheme " LIBRARY=tap all install test")))))
|
(list (string-append "make SCHEME=" scheme " LIBRARY=tap all install test")))))
|
||||||
|
|
||||||
`((makings ,@(map (lambda (scheme)
|
`((jenkinsfile
|
||||||
|
(agent "label 'docker-x86_64'")
|
||||||
|
(options "disableConcurrentBuilds()"
|
||||||
|
"buildDiscarder(logRotator(numToKeepStr: '10', artifactNumToKeepStr: '10'))"))
|
||||||
|
(makings ,@(map (lambda (scheme)
|
||||||
`((name ,scheme)
|
`((name ,scheme)
|
||||||
(image ,(string-append "schemers/" scheme ":head"))
|
(image ,(string-append "schemers/" scheme ":head"))
|
||||||
(stages
|
(stages
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue