summaryrefslogtreecommitdiff
path: root/render-test/ios/fastlane
diff options
context:
space:
mode:
Diffstat (limited to 'render-test/ios/fastlane')
-rw-r--r--render-test/ios/fastlane/Appfile3
-rw-r--r--render-test/ios/fastlane/Matchfile5
-rw-r--r--render-test/ios/fastlane/README.md44
3 files changed, 52 insertions, 0 deletions
diff --git a/render-test/ios/fastlane/Appfile b/render-test/ios/fastlane/Appfile
new file mode 100644
index 0000000000..b9fbc62d2b
--- /dev/null
+++ b/render-test/ios/fastlane/Appfile
@@ -0,0 +1,3 @@
+app_identifier("com.mapbox.RenderTestApp") # The bundle identifier of your app
+apple_id ENV['MAPBOX_APPLE_ID']
+team_id ENV['MAPBOX_APPLE_TEAM_ID'] # Developer Portal Team ID \ No newline at end of file
diff --git a/render-test/ios/fastlane/Matchfile b/render-test/ios/fastlane/Matchfile
new file mode 100644
index 0000000000..6c2f977cc5
--- /dev/null
+++ b/render-test/ios/fastlane/Matchfile
@@ -0,0 +1,5 @@
+git_url("git@github.com:mapbox/apple-certificates.git")
+type("development") # The default type, can be: appstore, adhoc, enterprise or development
+app_identifier(["com.mapbox.RenderTestApp", "com.mapbox.RenderTestAppTests"])
+username ENV['MAPBOX_APPLE_ID']
+keychain_name("fastlane_keychain") \ No newline at end of file
diff --git a/render-test/ios/fastlane/README.md b/render-test/ios/fastlane/README.md
new file mode 100644
index 0000000000..29cbacab75
--- /dev/null
+++ b/render-test/ios/fastlane/README.md
@@ -0,0 +1,44 @@
+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 cask install fastlane`
+
+# Available Actions
+## iOS
+### ios ios_build
+```
+fastlane ios ios_build
+```
+Description of what the lane does
+### ios gym_build
+```
+fastlane ios gym_build
+```
+Description of what the lane does
+### ios xcode_build
+```
+fastlane ios xcode_build
+```
+Description of what the lane does
+### ios ci_build
+```
+fastlane ios ci_build
+```
+Description of what the lane does
+
+----
+
+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).