Files
test/Jenkinsfile
peri4 0d4510d84a
All checks were successful
p_test/pipeline/head This commit looks good
3
2024-12-02 18:14:34 +03:00

19 lines
471 B
Groovy

@Library('SHS.Platforms') _
properties([
copyArtifactPermission('*'),
buildDiscarder(logRotator(numToKeepStr: "10", artifactNumToKeepStr: "5")),
parameters(
[booleanParam(name: 'Debug', defaultValue: false, description: 'Build debug version')]
)
])
node {
stage("Download sources") {
checkout scm
}
def pl = new org.SHS.Platforms(this)
pl.get()
pl.forEach ({ dist, toolchain ->
echo "build=${env.BUILD_NUMBER}, debug=${Debug}"
}, whiteList: ["debian"])
}