diff --git a/fastlane/Fastfile b/fastlane/Fastfile deleted file mode 100644 index 2f3c7031..00000000 --- a/fastlane/Fastfile +++ /dev/null @@ -1,37 +0,0 @@ -# This file contains the fastlane.tools configuration -# You can find the documentation at https://docs.fastlane.tools -# -# For a list of all available actions, check out -# -# https://docs.fastlane.tools/actions -# -# For a list of all available plugins, check out -# -# https://docs.fastlane.tools/plugins/available-plugins -# - -# Uncomment the line if you want fastlane to automatically update itself -# update_fastlane - -default_platform(:ios) - -platform :ios do - desc "Description of what the lane does" - lane :build_demo_apps do - xcbuild( - scheme: "Demo", - xcargs: "-arch x86_64 -sdk iphonesimulator -showBuildTimingSummary", - workspace: "Brightroom.xcworkspace", - ) - - xcbuild( - scheme: "SwiftUIDemo", - xcargs: "-arch x86_64 -sdk iphonesimulator -showBuildTimingSummary", - workspace: "Brightroom.xcworkspace", - ) - end - - lane :run_all_tests do - scan(scheme: "BrightroomEngineTests") - end -end diff --git a/fastlane/README.md b/fastlane/README.md deleted file mode 100644 index 43d1e973..00000000 --- a/fastlane/README.md +++ /dev/null @@ -1,34 +0,0 @@ -fastlane documentation -================ -# Installation - -Make sure you have the latest version of the Xcode command line tools installed: - -``` -xcode-select --install -``` - -Install _fastlane_ using -``` -[sudo] gem install fastlane -NV -``` -or alternatively using `brew install fastlane` - -# Available Actions -## iOS -### ios build_demo_apps -``` -fastlane ios build_demo_apps -``` -Description of what the lane does -### ios run_all_tests -``` -fastlane ios run_all_tests -``` - - ----- - -This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run. -More information about fastlane can be found on [fastlane.tools](https://fastlane.tools). -The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).