Jenkinsfile
Some checks failed
pipdoc/pipeline/head There was a failure building this commit

This commit is contained in:
2020-05-28 14:59:04 +03:00
parent dbff7cec26
commit 007e3db9ef

8
Jenkinsfile vendored
View File

@@ -37,10 +37,14 @@ node {
}
}
sh "docker system prune -f"
stage("PIP doc") {
echo "${_msg}"
}
pipeline {
agent {
label 'master'
}
stages {
stage("PIP doc") {
steps {
checkout scm
sh "rm -rf share"
@@ -52,5 +56,5 @@ node {
archiveArtifacts 'pip_doc.zip'
}
}
echo "${_msg}"
}
}