Skip to content

Commit 386f659

Browse files
authored
ci: fix CircleCI carthage timeout (#1657)
1 parent 7b0680e commit 386f659

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

.circleci/config.yml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
defaults: &defaults
2-
macos:
3-
xcode: "13.1.0"
4-
shell: /bin/bash --login -eo pipefail
1+
defaults:
2+
&defaults
3+
macos:
4+
xcode: "13.1.0"
5+
shell: /bin/bash --login -eo pipefail
56
aliases:
67
- &cache-pull
78
keys:
@@ -12,12 +13,11 @@ aliases:
1213
key: gem-cache-v1-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }}
1314
paths:
1415
- vendor/bundle
15-
- &prepare
16-
|
17-
git submodule update --init --recursive
18-
sudo gem install bundler
19-
bundle config set path 'vendor/bundle'
20-
bundle install
16+
- &prepare |
17+
git submodule update --init --recursive
18+
sudo gem install bundler
19+
bundle config set path 'vendor/bundle'
20+
bundle install
2121
- &filter-only-master
2222
branches:
2323
only:
@@ -32,7 +32,9 @@ jobs:
3232
- restore_cache: *cache-pull
3333
- run: *prepare
3434
- save_cache: *cache-push
35-
- run: bundle exec rake test:carthage
35+
- run:
36+
command: bundle exec rake test:carthage
37+
no_output_timeout: 60m
3638

3739
workflows:
3840
version: 2

0 commit comments

Comments
 (0)