From 9ceb02e123bae8f5f6ff5f65c80980017f68b063 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 22 Aug 2018 10:03:52 -0400 Subject: [PATCH] fix passing parameters MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- ci/Jenkinsfile.android | 4 ++-- ci/Jenkinsfile.ios | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ci/Jenkinsfile.android b/ci/Jenkinsfile.android index 69668cbb9c..6da3dfed61 100644 --- a/ci/Jenkinsfile.android +++ b/ci/Jenkinsfile.android @@ -28,7 +28,7 @@ pipeline { print "Running ${params.BUILD_TYPE} build!" /* Necessary to load methods */ mobile = load 'ci/mobile.groovy' - mobile.prep(type: params.BUILD_TYPE) + mobile.prep(params.BUILD_TYPE) } } } @@ -44,7 +44,7 @@ pipeline { } stage('Compile') { steps { - script { apk = mobile.android.compile(type: params.BUILD_TYPE) } + script { apk = mobile.android.compile(params.BUILD_TYPE) } } } stage('Archive') { diff --git a/ci/Jenkinsfile.ios b/ci/Jenkinsfile.ios index b42c351c2c..e4275603af 100644 --- a/ci/Jenkinsfile.ios +++ b/ci/Jenkinsfile.ios @@ -32,7 +32,7 @@ pipeline { print "Running ${params.BUILD_TYPE} build!" /* Necessary to load methods */ mobile = load 'ci/mobile.groovy' - mobile.prep(type: params.BUILD_TYPE) + mobile.prep(params.BUILD_TYPE) } } } @@ -48,7 +48,7 @@ pipeline { } stage('Compile') { steps { - script { api = mobile.ios.compile(type: params.BUILD_TYPE) } + script { api = mobile.ios.compile(params.BUILD_TYPE) } } } stage('Archive') {