From 756a1c9f3c9a7b8f9c1bdbe4bf2dff178f28e672 Mon Sep 17 00:00:00 2001 From: peri4 Date: Mon, 2 Dec 2024 18:06:44 +0300 Subject: [PATCH] 1 --- Jenkinsfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Jenkinsfile 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"]) +}