docker, Jenkinsfile

This commit is contained in:
2020-08-28 13:39:50 +03:00
parent 662a22771b
commit 8735b64ed8
6 changed files with 31 additions and 31 deletions

4
Jenkinsfile vendored
View File

@@ -1,5 +1,5 @@
def build_docker(name) {
def image = "${name}-libs"
def image = "${name}-shstk"
echo "Build image ${image}"
def pref = ""
if (env.DOCKER_PREFIX) {
@@ -31,7 +31,7 @@ node {
def platforms = ['debian', 'osx', 'windows', 'android', 'pi']
for (int i = 0; i < platforms.size(); ++i) {
if (_envmap["BUILD_${platforms[i]}"] == "1") {
stage("${platforms[i]}-libs") {
stage("${platforms[i]}-shstk") {
_msg += build_docker("${platforms[i]}")
}
}