Files
test/Jenkinsfile
peri4 756a1c9f3c
Some checks failed
p_test/pipeline/head There was a failure building this commit
1
2024-12-02 18:06:44 +03:00

16 lines
352 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 ->
sh 'echo build=${env.BUILD_NUMBER}'
}, whiteList: ["debian"])
}