Compare commits

..

2 Commits

Author SHA1 Message Date
dbff7cec26 Merge branch 'master' of https://git.shs.tools/SHS/libs
Some checks failed
pipdoc/pipeline/head There was a failure building this commit
2020-05-28 14:44:29 +03:00
3c94cce018 Jenkinsfile 2020-05-28 14:44:20 +03:00

4
Jenkinsfile vendored
View File

@@ -32,7 +32,7 @@ node {
for (int i = 0; i < platforms.size(); ++i) { for (int i = 0; i < platforms.size(); ++i) {
if (_envmap["BUILD_${platforms[i]}"] == "1") { if (_envmap["BUILD_${platforms[i]}"] == "1") {
stage("${platforms[i]}-libs") { stage("${platforms[i]}-libs") {
_msg += build_docker("${platforms[i]}") //_msg += build_docker("${platforms[i]}")
} }
} }
} }
@@ -41,6 +41,7 @@ node {
agent { agent {
label 'master' label 'master'
} }
steps {
checkout scm checkout scm
sh "rm -rf share" sh "rm -rf share"
sh "rm -v *.zip" sh "rm -v *.zip"
@@ -50,5 +51,6 @@ node {
sh "cd share/doc && zip -r ../../pip_doc.zip pip" sh "cd share/doc && zip -r ../../pip_doc.zip pip"
archiveArtifacts 'pip_doc.zip' archiveArtifacts 'pip_doc.zip'
} }
}
echo "${_msg}" echo "${_msg}"
} }