File tree 4 files changed +24
-9
lines changed
4 files changed +24
-9
lines changed Original file line number Diff line number Diff line change 1
1
# Nodes with values to reuse in the pipeline.
2
2
common_params :
3
3
plugins : &common_plugins
4
- - &bash_cache automattic/bash-cache#v1.5 .0: ~
4
+ - &bash_cache automattic/bash-cache#2.7 .0: ~
5
5
# Common environment values to use with the `env` key.
6
6
env : &common_env
7
- IMAGE_ID : xcode-12.5 .1
7
+ IMAGE_ID : xcode-13.4 .1
8
8
9
9
# This is the default pipeline – it will build and test the app
10
10
steps :
@@ -13,7 +13,11 @@ steps:
13
13
# ###############
14
14
- label : " 🧪 Build and Test"
15
15
key : " test"
16
- command : " build_and_test_pod"
16
+ command : |
17
+ # See https://github.com/Automattic/bash-cache-buildkite-plugin/issues/16
18
+ gem install bundler
19
+
20
+ build_and_test_pod
17
21
env : *common_env
18
22
plugins : *common_plugins
19
23
artifact_paths : " .build/logs/*.log"
@@ -23,7 +27,11 @@ steps:
23
27
# ################
24
28
- label : " 🔬 Validate Podspec"
25
29
key : " validate"
26
- command : " validate_podspec"
30
+ command : |
31
+ # See https://github.com/Automattic/bash-cache-buildkite-plugin/issues/16
32
+ gem install bundler
33
+
34
+ validate_podspec
27
35
env : *common_env
28
36
plugins : *common_plugins
29
37
artifact_paths : " .build/logs/*.log"
@@ -33,7 +41,11 @@ steps:
33
41
# ################
34
42
- label : " 🧹 Lint"
35
43
key : " lint"
36
- command : " lint_pod"
44
+ command : |
45
+ # See https://github.com/Automattic/bash-cache-buildkite-plugin/issues/16
46
+ gem install bundler
47
+
48
+ lint_pod
37
49
env : *common_env
38
50
plugins : *common_plugins
39
51
Original file line number Diff line number Diff line change @@ -4,10 +4,13 @@ PODSPEC_PATH="WPMediaPicker.podspec"
4
4
SLACK_WEBHOOK=$PODS_SLACK_WEBHOOK
5
5
6
6
echo " --- :rubygems: Setting up Gems"
7
+ # See https://github.com/Automattic/bash-cache-buildkite-plugin/issues/16
8
+ gem install bundler
9
+
7
10
install_gems
8
11
9
12
echo " --- :cocoapods: Publishing Pod to CocoaPods CDN"
10
13
publish_pod $PODSPEC_PATH
11
14
12
15
echo " --- :slack: Notifying Slack"
13
- slack_notify_pod_published $PODSPEC_PATH $SLACK_WEBHOOK
16
+ slack_notify_pod_published $PODSPEC_PATH " $SLACK_WEBHOOK "
Original file line number Diff line number Diff line change 1
- 2.6 .4
1
+ 2.7 .4
Original file line number Diff line number Diff line change 1
1
PODS:
2
- - WPMediaPicker (1.8.0-beta.1 )
2
+ - WPMediaPicker (1.8.4 )
3
3
4
4
DEPENDENCIES:
5
5
- WPMediaPicker (from `../`)
@@ -9,7 +9,7 @@ EXTERNAL SOURCES:
9
9
:path: "../"
10
10
11
11
SPEC CHECKSUMS:
12
- WPMediaPicker: b71345bed88eb1b9ad6313e3410795e0f1182f47
12
+ WPMediaPicker: 9533160e5587939876aeeb1461a441a4e5dc4c4d
13
13
14
14
PODFILE CHECKSUM: 31590cb12765a73c9da27d6ea5b8b127c095d71d
15
15
You can’t perform that action at this time.
0 commit comments