diff --git a/android/generic-build.pipeline b/android/generic-build.pipeline index 6763f55..1ef3ae4 100644 --- a/android/generic-build.pipeline +++ b/android/generic-build.pipeline @@ -1,24 +1,24 @@ // Request a node to be allocated to us node( "AndroidSDK" ) { // We want Timestamps on everything timestamps { // We want to catch any errors that occur to allow us to send out notifications (ie. emails) if needed catchError { // Android application builds are performed by a single script, so let's get that underway stage('Building Application') { // Do the build! sh """ ${dependency} export EXTRA=-DKDE_L10N_AUTO_TRANSLATIONS=ON /opt/helpers/build-generic ${application} ${cmakeParameters} """ } stage('Capturing APKs') { // Now grab the APKs it generated - archiveArtifacts artifacts: 'build/*/*_build_apk/build/outputs/apk/*.apk', onlyIfSuccessful: true + archiveArtifacts artifacts: 'build/*/*_build_apk/build/outputs/apk/*/*.apk', onlyIfSuccessful: true } } } }