mzgreen
11/10/2020, 5:23 PMFerran
11/10/2020, 5:31 PMMustafa Ozhan
11/10/2020, 9:46 PMxcodebuild
I have [WIP] KMP project (just a demonstration now) it has ios,android,jvm and js and the gihub action I use is here
https://github.com/BookBarters/BookBarters/blob/34aecd8120b9d2acd958ac4417efe877b90de151/.github/workflows/main.yml
It basically first set up the environments then for android, js, jvm ios(common part) it runs ./gradlew build --parallel
which is executing most of possible tasks in gradle
and for XCode I use beta version in order to use latest SwiftUI etc.
xcodebuild build -project ios/ios.xcodeproj/ -sdk iphonesimulator -destination "OS=14.0" ONLY_ACTIVE_ARCH=NO CODE_SIGNING_REQUIRED=NO EXCLUDED_ARCHS=arm64
it seems these configurations are working fine for me now
If anyone see something missing or needs to improve just let me know 🙂