From 1111818d9f5c87361100ff1e76ab8eecac1eb9bc Mon Sep 17 00:00:00 2001 From: Mattermost Build Date: Tue, 19 Nov 2019 17:55:32 +0100 Subject: [PATCH] Fix CircleCI iOS build by adding watchman (#3576) --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index dd272f7f6..636c4c05d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -160,7 +160,9 @@ commands: working_directory: fastlane name: Run fastlane to build iOS no_output_timeout: 30m - command: bundle exec fastlane ios build + command: | + HOMEBREW_NO_AUTO_UPDATE=1 brew install watchman + bundle exec fastlane ios build deploy-to-store: description: "Deploy build to store"