From 386f659fb7c20c78d4adf386f3978fed8c9c2293 Mon Sep 17 00:00:00 2001 From: Manuel <5673677+mtrezza@users.noreply.github.com> Date: Wed, 27 Jul 2022 14:16:41 +0200 Subject: [PATCH] ci: fix CircleCI carthage timeout (#1657) --- .circleci/config.yml | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 626b94d34..a75e239c1 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: @@ -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: @@ -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