From 682e493fa3d4ba12ccf41c7c1a6462ea7f7a9336 Mon Sep 17 00:00:00 2001 From: Ivan Pelipenko Date: Fri, 8 May 2020 22:26:56 +0300 Subject: [PATCH] Jenkins: add stages --- Jenkinsfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7620553..314c605 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -29,7 +29,9 @@ node { for (int i = 0; i < platforms.size(); ++i) { //echo "check BUILD_${platforms[i]} -> ${_v}" if (_envmap["BUILD_${platforms[i]}"] == "1") { - _msg += build_docker("${platforms[i]}") + stage("${platforms[i]}-libs") { + _msg += build_docker("${platforms[i]}") + } } } echo "${_msg}"