diff --git a/bitrise.yml b/bitrise.yml new file mode 100644 index 0000000000..da83dd5d8a --- /dev/null +++ b/bitrise.yml @@ -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