diff --git a/Jenkinsfile b/Jenkinsfile index 36200b4..99e9ab0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -137,9 +137,9 @@ }, run: { // Fabric Crashlytics / Firebase App Distribution only support APKs as of June 2020 - if (! deployBranches.contains(lazyConfig['branch']) && lazyConfig['branch'] != workingBranch && lazyConfig.env.RELEASE ) - fastLane('android', 'build_apk') - else + // if (! deployBranches.contains(lazyConfig['branch']) && lazyConfig['branch'] != workingBranch && lazyConfig.env.RELEASE ) + // fastLane('android', 'build_apk') + // else fastLane('android', 'build') }, args: "-v /opt/android:/opt/android" @@ -152,9 +152,9 @@ junit(testResults: 'fastlane/report.xml,**/build/test-results/*/*.xml', allowEmptyResults: true) // Fabric Crashlytics / Firebase App Distribution only support APKs as of June 2020 - if (! deployBranches.contains(lazyConfig['branch']) && lazyConfig['branch'] != workingBranch && lazyConfig.env.RELEASE ) - archiveArtifacts(artifacts: "${buildDirApk}/**", allowEmptyArchive: false) - else + // if (! deployBranches.contains(lazyConfig['branch']) && lazyConfig['branch'] != workingBranch && lazyConfig.env.RELEASE ) + // archiveArtifacts(artifacts: "${buildDirApk}/**", allowEmptyArchive: false) + // else archiveArtifacts(artifacts: "${buildDir}/**", allowEmptyArchive: false) }, ]