I try to upload iOS ipa file to bamboo. Build is successful. But in artifacts section I see "No files found".
Here is my build script:
PROJECT_NAME="ALLIE.xcodeproj"
TARGET_NAME="ALLIE"
CONFIGURATION_NAME="Release"
SDK_NAME="iphoneos8.3"
CURRENT_DIR=`pwd`
PROJECT_BUILD_DIR="${CURRENT_DIR}/build"
APPLICATION_NAME="ALLie"
xcodebuild clean archive -scheme "${TARGET_NAME}" -archivePath "${PROJECT_BUILD_DIR}/${APPLICATION_NAME}.xcarchive"
xcodebuild -exportArchive -exportFormat ipa -archivePath "${PROJECT_BUILD_DIR}/${APPLICATION_NAME}.xcarchive" -exportPath "${PROJECT_BUILD_DIR}/${APPLICATION_NAME}.ipa" -exportWithOriginalSigningIdentity
I can see final files at
/Users/VSemenchenko/bamboo-agent-home/xml-data/build-dir/ALH-AL-JOB1/build/ALLie.ipa
My settings for gathering artifacts:
Name - Allie App
Location -
Copy pattern - *.ipa
Maybe final ipa file isn't in correct folder? Thank you in advance!
Community moderators have prevented the ability to post new answers.
Fixed! Looks like there is some kind of size limit on uploadings. So I try file with lower size and upload was successful!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.