From bd9cb37ccf908e0ab6e03d3499c3b899e7116ff0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ramos?= <165856+hramos@users.noreply.github.com> Date: Thu, 16 Nov 2017 17:49:56 -0800 Subject: [PATCH] Update buck to v2017.11.16.01 Summary: Android tests on CI have been failing since late October due to dd016f334cef26f393b1a3c1e052e89a69502a56 which makes use of a new Buck feature, `required_for_source_only_abi`. Circle was using an older September release. In this PR, we update to the latest release. Green is good. Red is bad. Wait for Circle to run. [INTERNAL][BUGFIX][./circleci/config.yml] - Update Buck version Closes https://github.com/facebook/react-native/pull/16861 Differential Revision: D6355335 Pulled By: hramos fbshipit-source-id: 411d0b229f0dfb7e9dfc07c300b6546bf7afcdfe --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 32902f12f..b21fba58c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -69,11 +69,11 @@ aliases: - &restore-cache-buck keys: - - v1-buck-{{ arch }}-v2017.09.04.02 + - v1-buck-{{ arch }}-v2017.11.16.01 - &save-cache-buck paths: - ~/buck - key: v1-buck-{{ arch }}-v2017.09.04.02 + key: v1-buck-{{ arch }}-v2017.11.16.01 - &restore-cache-watchman keys: @@ -334,7 +334,7 @@ jobs: name: Install Buck command: | if [[ ! -e ~/buck ]]; then - git clone https://github.com/facebook/buck.git ~/buck --branch v2017.09.04.02 --depth=1 + git clone https://github.com/facebook/buck.git ~/buck --branch v2017.11.16.01 --depth=1 fi cd ~/buck && ant buck --version