https://kotlinlang.org logo
#multiplatform
Title
# multiplatform
b

Boris Yordanov

05/18/2021, 6:58 PM
Has anyone done CI with a ios/android project? What would be the steps to build both apps in parallel?
a

Arkadii Ivanov

05/18/2021, 7:05 PM
I have parallel build setup with GitHub Actions. I defined BuildTarget enum and passed the list of targets via command line. Multiplatform targets and other build logic are enabled depending on the provided set.
m

Mustafa Ozhan

05/19/2021, 8:32 AM
You can check my GitHub Action setup: https://github.com/CurrencyConverterCalculator/CCC/blob/master/.github/workflows/main.yml
Set up Xcode
Install Cocoapods
Xcode build
steps are covering iOS while
Gradle Build
is covering rest of the platforms including Android
b

Boris Yordanov

05/19/2021, 8:47 AM
Thank you guys!
2 Views