File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -83,14 +83,15 @@ jobs:
83
83
run : |
84
84
set -euo pipefail
85
85
echo "Using CocoaPods $(pod --version)"
86
+ mkdir -p "$LOG_DIR"
86
87
# First try without repo update (CDN should suffice)
87
- if ! pod install; then
88
+ if ! pod install 2>&1 | tee "$LOG_DIR/pod_install.log" ; then
88
89
echo "pod install failed; cleaning lock/cache and retrying with repo update..."
89
90
rm -f Podfile.lock
90
91
rm -rf Pods
91
92
pod cache clean --all || true
92
93
pod repo update || true
93
- pod install --repo-update --verbose
94
+ pod install --repo-update --verbose 2>&1 | tee -a "$LOG_DIR/pod_install.log"
94
95
fi
95
96
96
97
- name : Pod env (on failure)
Original file line number Diff line number Diff line change
1
+ source 'https://cdn.cocoapods.org/'
2
+
1
3
platform :osx , '10.11'
2
4
3
5
target 'Avro Keyboard' do
4
- # Use a Git mirror to avoid SVN dependency flakiness for RegexKitLite
5
- pod 'RegexKitLite' , :git => 'https://github.com/wezm/RegexKitLite.git'
6
+ pod 'RegexKitLite' , '~> 4.0'
6
7
pod 'FMDB' , '~> 2.1'
7
8
end
You can’t perform that action at this time.
0 commit comments