/Swiftlane

Alternative to Fastlane, built entirely in Swift.

Primary LanguageSwiftApache License 2.0Apache-2.0

Swiftlane

Swiftlane is a fully open-source alternative to Fastlane, built entirely in Swift.

It provides a more modern and type-safe way of automating the building, testing, and deployment of iOS apps, while still offering the same level of customization and flexibility as Fastlane.

Requirements

  • MacOS 12+

Motivation

We love Swift and we wanted to make use of it for our CI.

That way we got compile time safe, type safe, written in well-known language code base covered with unit tests.

In the past we used to use fastlane + danger/swift. Why we moved away from it?

  • We are iOS developers and we know Swift well unlike Ruby with all of it's caveats.
  • Proper Swift infrastructure (danger scripts were getting huge and inconvenient very fast)
  • Type safe code
  • Unit tests and debugging? Easy!

Status

⚠️ We are still preparing this repo to be usable by public, now it's in beta.

Instructions are not yet complete and they are missing some important steps to use the tool. But you can already check the "Getting Started" section while we are preparing all the info 😸.

Closest Plans

  • Enrich README and provide detailed instructions on how to configure Swiftlane for your CI
  • GitHub integration
  • A lot more features :)

Features

Keep in mind that at the moment Swiftlane only supports projects of iOS apps.

Detailed information about available commands is provided in the CLI tool itself, see the "Getting Started" section on how to build it.

Some of the features of Swiftlane include:

  • Modular architecture that allows for easy customisation, extension, and testability
  • Detailed logging with support of loglevels and verbose logfiles to make sure nothing is hidden from your eyes
  • Perform various checks
    • run swiftlint
    • check code coverage limits
    • look after TODOs with resolution dates
    • verify characters used in files and folders names
    • restrict changes in specific files of your repo
  • Build, test, archive and deploy your apps
    • build without testing
    • run unit and UI tests
    • run tests on multiple simulators in parallel
    • archive an .ipa with fine control which provisioning profiles to use
    • upload your .ipa to AppStoreConnect or Firebase AppDistribution
    • manage DSYMs
  • Manage code signing certificates and provisioning profiles
    • Encrypted git repo storage for certs and profiles (compatible with Fastlane match)
    • Dramatically eases the process of creating and updating certificates and provisioning profiles
    • Automatically includes all active devices from Apple Developer Portal into your provisioning profile
    • One-tap installation of certs and profiles on developers' machines and CI
  • Control version and build number of your app
    • Allows to correctly update version or build number of your project with just one command
  • Guardian (As of now we only support integration with GitLab)
    • Human readable messages about steps, information and any errors of running CI job as a comment to merge request

What is implemented under the hood

Swiftlane is built around modular architecture

Integration with CLIs

We have implemented a few services to use 3rd party CLIs in safe, convenient and predictable way.

  • xcodebuild
    • build
    • test
    • archive
    • run tests on multiple simulators in parallel (with fine control)
  • xccov
    • obtain code coverage data
  • simctl
    • create, clone, reset, boot, etc. your iOS simulators
  • SwiftLint
    • lint your code
  • Sentry
    • upload your dsyms to Sentry
  • periphery
    • scan for unused code
  • XCLogParser
    • parse build logs

Integration with web APIs

  • Custom NetworkingClient which wraps URLSession to make building new API Clients fast, easy, and readable (and somewhat declarative)
  • API Clients to allow integrations with:
    • AppStoreConnect (based on Bagbutik)
    • Jira (custom implementation)
    • GitLab (custom implementation)
    • FirebaseAppDistribution (custom implementation)

Getting Started

⚠️ Instructions are not complete yet but you can already take a look!

Most of the commands require path to so-called shared config along with additional options. We are going to provide an example of such config soon.

Build from source

Clone the repo and build CLI target.

$ git clone https://github.com/swiftlane-code/Swiftlane
$ cd Swiftlane
$ swift build --product SwiftlaneCLI -c release

Now you can move the built binary .build/release/SwiftlaneCLI wherever you want.

Check out the builtin help. We tried our best to make a good description for all commands and options.

$ .build/release/SwiftlaneCLI --help

Customisation

We are going to describe this a little later.

Contributing

Swiftlane is an open-source project, and we welcome contributions from anyone who is interested in improving it. Whether you want to fix a bug, add a new feature, or just help with the documentation, we would love to have your help.

To contribute to Swiftlane, you can fork the repository, make your changes, and submit a pull request. We will review your changes and merge them if they meet our quality standards.

License

Swiftlane is licensed under the Apache License 2.0.

Credits

Swiftlane was originally developed by: