forked from mastodon/mastodon-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
016db92
commit 82f27a1
Showing
1 changed file
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
format_version: '11' | ||
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git | ||
project_type: other | ||
workflows: | ||
benchmark: | ||
steps: | ||
- git-clone@6: {} | ||
- script@1: | ||
title: Install Ruby Bundler | ||
inputs: | ||
- content: rm ~/git/.ruby-version && gem install bundler:2.3.11 | ||
- script@1: | ||
title: Install Ruby Gems | ||
inputs: | ||
- content: bundle install | ||
- script@1: | ||
title: Install Arkana | ||
inputs: | ||
- content: bundle exec arkana -e ./env/.env | ||
- script@1: | ||
title: Install Pods | ||
inputs: | ||
- content: bundle exec pod install | ||
- script@1: | ||
title: Build project | ||
inputs: | ||
- content: | | ||
set -eo pipefail | ||
time xcodebuild clean build -workspace Mastodon.xcworkspace \ | ||
-scheme Mastodon \ | ||
-sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 14,OS=16.2' -configuration Debug CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO | ||
meta: | ||
bitrise.io: | ||
stack: osx-xcode-15.1.x | ||
machine_type_id: g2-m1.8core |