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') {