Has anyone done CI with a ios/android project? Wha...
# multiplatform
b
Has anyone done CI with a ios/android project? What would be the steps to build both apps in parallel?
a
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
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
Thank you guys!