Hi, does anyone have an example of a working CI? I...
# multiplatform
r
Hi, does anyone have an example of a working CI? I was able to build the Android one, but for iOS, I have no clue how to create the IPA file. I’m trying something like this:
Copy code
version: 2.1

orbs:
  android: circleci/android@2.5.0

jobs:
  build-apps:
    executor:
      name: android/android-machine
      resource-class: large
      tag: default
    steps:
      - checkout
      - run: ./gradlew assemble
      - store_artifacts:
          path: composeApp/build/outputs/
          destination: build-outputs

  build-ios:
    macos:
      xcode: "15.2.0"
    steps:
      - checkout
      - run: ./gradlew composeApp:iosArm64Binaries
      - store_artifacts:
          path: composeApp/build/bin/iosArm64
          destination: build-outputs
workflows:
  build-all:
    jobs:
      - build-apps
      - build-ios
I’m using Circle CI. Thanks!
m
I'm curious about this myself! Did you ever manage to get it working?
r
locally it works with fastlane
but I was not able to integrate it to the CI
m
you need to run the fastlane in CI