Files
test/Jenkinsfile
peri4 5f6a7c194d
All checks were successful
p_test/pipeline/head This commit looks good
2
2024-12-02 18:08:20 +03:00

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"])
}