16 lines
349 B
Groovy
16 lines
349 B
Groovy
@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 ->
|
|
echo "build=${env.BUILD_NUMBER}"
|
|
}, whiteList: ["debian"])
|
|
}
|