1
Some checks failed
p_test/pipeline/head There was a failure building this commit

This commit is contained in:
2024-12-02 18:06:44 +03:00
commit 756a1c9f3c

15
Jenkinsfile vendored Normal file
View 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"])
}