Skip to content

Commit

Permalink
ci: fix CircleCI carthage timeout (#1657)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrezza authored Jul 27, 2022
1 parent 7b0680e commit 386f659
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
defaults: &defaults
macos:
xcode: "13.1.0"
shell: /bin/bash --login -eo pipefail
defaults:
&defaults
macos:
xcode: "13.1.0"
shell: /bin/bash --login -eo pipefail
aliases:
- &cache-pull
keys:
Expand All @@ -12,12 +13,11 @@ aliases:
key: gem-cache-v1-{{ arch }}-{{ .Branch }}-{{ checksum "Gemfile.lock" }}
paths:
- vendor/bundle
- &prepare
|
git submodule update --init --recursive
sudo gem install bundler
bundle config set path 'vendor/bundle'
bundle install
- &prepare |
git submodule update --init --recursive
sudo gem install bundler
bundle config set path 'vendor/bundle'
bundle install
- &filter-only-master
branches:
only:
Expand All @@ -32,7 +32,9 @@ jobs:
- restore_cache: *cache-pull
- run: *prepare
- save_cache: *cache-push
- run: bundle exec rake test:carthage
- run:
command: bundle exec rake test:carthage
no_output_timeout: 60m

workflows:
version: 2
Expand Down

0 comments on commit 386f659

Please sign in to comment.