Replies: 5 comments 5 replies
-
I'm getting same issue
build id 64e4fbc914e6077715765fb8 |
Beta Was this translation helpful? Give feedback.
-
Hello @yegenpres From the errors, I managed to find this snippet: Can you please make sure your script with file paths is correct. You can also inspect the files in our VM-s by enabling SSH/VNC access and connecting to our machines. |
Beta Was this translation helpful? Give feedback.
-
I will have to reproduce this issue on my end, which may take some time. |
Beta Was this translation helpful? Give feedback.
-
Hi @yegenpres,
Can you share the revised build id? |
Beta Was this translation helpful? Give feedback.
-
Hi @yegenpres & @navasiloy, I'm tentatively closing the discussion since we haven't heard back from you. You can open the discussion again by replying to this message or opening a new discussion. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
If you are looking for help, please confirm the following...
Which mobile framework are you using?
Kotlin Multiplatorm
Steps to reproduce
ios-kmm-workflow:
name: Dansk assistent IOS KMM Workflow
instance_type: mac_mini_m1
max_build_duration: 120
integrations:
app_store_connect: Codemagic
triggering:
events:
- push
branch_patterns:
- pattern: "release"
include: true
environment:
java: 17
ios_signing:
distribution_type: app_store
bundle_identifier: com.danskassistent.app
vars:
XCODE_PROJECT: "Dansk\ Assistent.xcodeproj"
XCODE_SCHEME: "Dansk\ Assistent"
APP_ID: 6449679395 # <-- Use the TestFlight Apple id number (An automatically generated ID assigned to your app) found under General > App Information > Apple ID.
xcode: latest
scripts:
- name: Install Swift Packages
script: |
cd iosAssistentApp
xcodebuild -resolvePackageDependencies
- name: Build shared
script: |
cd iosAssistentApp
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -project Dansk\ Assistent.xcodeproj -scheme Dansk\ Assistent -configuration Debug OBJROOT=../build/ios SYMROOT=../build/ios -sdk iphonesimulator -arch arm64 -allowProvisioningDeviceRegistration -allowProvisioningUpdates
- name: Set up code signing settings on Xcode project
script: |
cd $CM_BUILD_DIR/iosAssistentApp
xcode-project use-profiles
- name: Increment build number
script: |
#!/bin/sh
set -e
set -x
cd $CM_BUILD_DIR/iosAssistentApp
LATEST_BUILD_NUMBER=$(app-store-connect get-latest-app-store-build-number "$APP_ID")
agvtool new-version -all $(($LATEST_BUILD_NUMBER + 5))
- name: Build ipa for distribution
script: |
cd $CM_BUILD_DIR/iosAssistentApp
xcode-project build-ipa
--project "$XCODE_PROJECT"
--scheme "$XCODE_SCHEME"
artifacts:
- iosAssistentApp/build/ios/ipa/*.ipa
publishing:
email:
recipients:
- [email protected]
notify:
success: true
failure: true
app_store_connect:
auth: integration
Expected results
I expect to get build folder of shared module when run script "Build shared"
But I received next one: The following build commands failed:
Copy /Users/builder/clone/build/ios/Debug-iphonesimulator/Dansk\ Assistent.app/RevenueCat_RevenueCat.bundle /Users/builder/clone/build/ios/Debug-iphonesimulator/RevenueCat_RevenueCat.bundle (in target 'Dansk Assistent' from project 'Dansk Assistent')
(1 failure)
It is not package problem, it happened with eany other package if I change it.
Actual results
(1 failure)
Build id (optional)
64e3ab9dfa11e09d3013b666
Beta Was this translation helpful? Give feedback.
All reactions