commit 756a1c9f3c9a7b8f9c1bdbe4bf2dff178f28e672 Author: peri4 Date: Mon Dec 2 18:06:44 2024 +0300 1 diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..cb30123 --- /dev/null +++ b/Jenkinsfile @@ -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"]) +}