diff --git a/Jenkinsfile b/Jenkinsfile index e4ffc2c..07c840b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,13 +11,14 @@ def build_docker(name) { } def args = "${pref} --build-arg LIBS_BUILD_NUMBER=${env.BUILD_NUMBER} --build-arg JOBS_COUNT=${jobs}" dir ("docker/${image}") { - //echo "build ${image} ${args}" sh "docker build ${args} --no-cache -t ${image} ." } return "\n - ${image}" } node { - checkout scm + stage("Download SRC") { + checkout scm + } def _envmap = [:] def _env = sh(script: "env", returnStdout: true).trim().split("\n") _env.each{ l -> @@ -26,12 +27,9 @@ node { def _v = l.substring(_ind + 1); _envmap["${_n}"] = "${_v}"; } - //println "done!" - //println "${_envmap}" def _msg = "Built images:" def platforms = ['debian', 'osx', 'windows', 'android', 'pi'] for (int i = 0; i < platforms.size(); ++i) { - //echo "check BUILD_${platforms[i]} -> ${_v}" if (_envmap["BUILD_${platforms[i]}"] == "1") { stage("${platforms[i]}-libs") { _msg += build_docker("${platforms[i]}") diff --git a/pip b/pip index b860d8b..1899832 160000 --- a/pip +++ b/pip @@ -1 +1 @@ -Subproject commit b860d8bbafcde76290321b3e1b79b8ec400e0700 +Subproject commit 18998323629d04af96335621656d2197922e548e