This commit is contained in:
15
Jenkinsfile
vendored
Normal file
15
Jenkinsfile
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
@Library('SHS.Platforms') _
|
||||
properties([
|
||||
copyArtifactPermission('*'),
|
||||
buildDiscarder(logRotator(numToKeepStr: "10", artifactNumToKeepStr: "5"))
|
||||
])
|
||||
node {
|
||||
stage("Download sources") {
|
||||
checkout scm
|
||||
}
|
||||
def pl = new org.SHS.Platforms(this)
|
||||
pl.get()
|
||||
pl.forEach ({ dist, toolchain ->
|
||||
sh 'echo build=${env.BUILD_NUMBER}'
|
||||
}, whiteList: ["debian"])
|
||||
}
|
||||
Reference in New Issue
Block a user