1
0
mirror of https://github.com/firstBitMarksistskaya/jenkins-lib.git synced 2025-02-11 14:50:52 +02:00

Набор служебных шагов

This commit is contained in:
Nikita Gryzlov 2020-04-03 17:39:49 +03:00
parent f399167667
commit b39622efad
No known key found for this signature in database
GPG Key ID: C1EAE411FEF0BF2F
4 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,3 @@
def call() {
cmd("opm install -l")
}

3
vars/log.groovy Normal file
View File

@ -0,0 +1,3 @@
def location() {
echo "Running on node $env.NODE_NAME"
}

View File

@ -0,0 +1,4 @@
def call() {
unstash '1Cv8.1CD.zip'
unzip dir: 'build/ib', zipFile: '1Cv8.1CD.zip'
}

4
vars/zipInfobase.groovy Normal file
View File

@ -0,0 +1,4 @@
def call() {
zip dir: 'build/ib', glob: '1Cv8.1CD', zipFile: '1Cv8.1CD.zip'
stash name: "1Cv8.1CD.zip", includes: "1Cv8.1CD.zip", allowEmpty: false
}