File tree Expand file tree Collapse file tree 3 files changed +56
-0
lines changed Expand file tree Collapse file tree 3 files changed +56
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -eu
4
+
5
+ # FIXIT-13.1: Temporary fix until we're on the Xcode 13.1 VM
6
+ echo " --- :rubygems: Fixing Ruby Setup"
7
+ gem install bundler
8
+
9
+ echo " --- :rubygems: Setting up Gems"
10
+ install_gems
11
+
12
+ echo " --- :cocoapods: Setting up Pods"
13
+ install_cocoapods
14
+
15
+ echo " --- :hammer_and_wrench: Build and Test"
16
+ bundle exec fastlane test_app_store_build
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -eu
4
+
5
+ # FIXIT-13.1: Temporary fix until we're on the Xcode 13.1 VM
6
+ echo " --- :rubygems: Fixing Ruby Setup"
7
+ gem install bundler
8
+
9
+ echo " --- :rubygems: Setting up Gems"
10
+ install_gems
11
+
12
+ echo " --- :cocoapods: Setting up Pods"
13
+ install_cocoapods
14
+
15
+ echo " --- :hammer_and_wrench: Build and Test"
16
+ bundle exec fastlane test
Original file line number Diff line number Diff line change
1
+ # Nodes with values to reuse in the pipeline.
2
+ common_params :
3
+ # Common plugin settings to use with the `plugins` key.
4
+ - &common_plugins
5
+ - automattic/bash-cache#2.6.0
6
+ # Common environment values to use with the `env` key.
7
+ - &common_env
8
+ # Remember to address all "FIXIT-13.1" comments when we'll update to new image.
9
+ #
10
+ # `xcode-13.4.1` note: The issue "FIXIT-13.1" addresses is still there in this image.
11
+ # See: https://buildkite.com/automattic/wordpress-ios/builds/8187#01813c28-1c1d-4a25-95c0-0fdd6f2af399
12
+ IMAGE_ID : xcode-13.4.1
13
+
14
+ # This is the default pipeline – it will build and test the app
15
+ steps :
16
+ - label : " 🔬 Build and Test"
17
+ command : .buildkite/commands/build-and-test.sh
18
+ env : *common_env
19
+ plugins : *common_plugins
20
+
21
+ - label : " 🛠 Verify App Store Target Builds"
22
+ command : .buildkite/commands/build-and-test-app-store.sh
23
+ env : *common_env
24
+ plugins : *common_plugins
You can’t perform that action at this time.
0 commit comments