From c46550b7e35c77d029fd1d37584734f908290c61 Mon Sep 17 00:00:00 2001 From: Darren Black Date: Tue, 10 Sep 2019 14:54:29 +0200 Subject: [PATCH] Manually sets keychain on CircleCI machine --- .circleci/config.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 65ea90478..d851912d8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,6 +29,13 @@ jobs: steps: - checkout - run: *prepare + - run: + name: "Create and set the default keychain" + command: | + security create-keychain -p "" temporary + security default-keychain -s temporary + security unlock-keychain -p "" temporary + security set-keychain-settings -lut 7200 temporary - run: bundle exec rake test:macos - run: bash <(curl -s https://codecov.io/bash) - store_test_results: