This commit is contained in:
2023-04-22 13:13:32 +03:00
parent 5e3c841c74
commit af0d42c4a1

View File

@@ -2,12 +2,12 @@ package org.SHS
class Platforms { class Platforms {
def steps def steps
Platforms(steps) { public Platforms(steps) {this.steps = steps}
this.steps = steps public Boolean get() {
// stage("Download platforms.json") { // stage("Download platforms.json") {
steps.sh "rm -rf platforms" steps.sh "rm -rf platforms"
steps.sh "git clone --depth 1 ${env.PLATFORMS_GIT} platforms" steps.sh "git clone --depth 1 ${env.PLATFORMS_GIT} platforms"
//} //}
} }
} }