1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2025-05-13 22:16:37 +02:00

Откат использования scm

This commit is contained in:
Nikita Gryzlov 2020-11-10 10:23:50 +03:00
parent 9950412e47
commit 3fe07a6255
No known key found for this signature in database
GPG Key ID: C1EAE411FEF0BF2F
2 changed files with 0 additions and 23 deletions

View File

@ -29,8 +29,6 @@ class EdtTransform implements Serializable {
return
}
doSCM()
def env = steps.env();
def workspaceDir = "$env.WORKSPACE/$WORKSPACE"

View File

@ -19,7 +19,6 @@ void call() {
buildDiscarder(logRotator(numToKeepStr: '30'))
timeout(time: 2, unit: TimeUnit.HOURS)
timestamps()
skipDefaultCheckout(true)
}
stages {
@ -29,18 +28,7 @@ void call() {
label 'agent'
}
options {
skipDefaultCheckout(true)
}
environment {
GIT_LFS_SKIP_SMUDGE=1
}
steps {
echo "test"
cmd "env"
checkout scm
script {
config = jobConfiguration() as JobConfiguration
agent1C = config.v8version
@ -64,8 +52,6 @@ void call() {
steps {
printLocation()
customCheckout config
installLocalDependencies()
createDir('build/out')
@ -107,7 +93,6 @@ void call() {
expression { config.stageFlags.edtValidate }
}
steps {
customCheckout config
edtTransform config
}
}
@ -125,7 +110,6 @@ void call() {
expression { config.stageFlags.edtValidate }
}
steps {
customCheckout config
edtValidate config
}
}
@ -139,7 +123,6 @@ void call() {
expression { config.stageFlags.bdd }
}
steps {
customCheckout config
unzipInfobase()
bdd config
@ -155,7 +138,6 @@ void call() {
expression { config.stageFlags.syntaxCheck }
}
steps {
customCheckout config
syntaxCheck config
}
}
@ -169,7 +151,6 @@ void call() {
expression { config.stageFlags.smoke }
}
steps {
customCheckout config
smoke config
}
}
@ -185,7 +166,6 @@ void call() {
expression { config.stageFlags.edtValidate }
}
steps {
customCheckout config
transform config
}
}
@ -199,7 +179,6 @@ void call() {
expression { config.stageFlags.sonarqube }
}
steps {
customCheckout config
sonarScanner config
}
}