From 301a2eb1c84a8130ba4e81e3098ab686b2311e3b Mon Sep 17 00:00:00 2001 From: Piotr Sikora Date: Wed, 23 Jan 2019 18:36:18 -0800 Subject: [PATCH] Fix build on macOS. (#2090) sha256sum shouldn't be necessary, since we use gsha256sum on macOS. Signed-off-by: Piotr Sikora --- .circleci/config.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3cd641f5218..b91adec4b24 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -77,16 +77,15 @@ jobs: steps: - run: sudo ntpdate -vu time.apple.com - run: brew install bazel cmake coreutils go libtool ninja wget - - run: sudo ln -s /usr/local/bin/gsha256sum /usr/local/bin/sha256sum - checkout - restore_cache: keys: - - macos_fastbuild_v2-bazel-cache-{{ checksum "WORKSPACE" }} + - macos_fastbuild-bazel-cache-{{ checksum "WORKSPACE" }} - run: rm ~/.gitconfig - run: make build_envoy - run: make test - save_cache: - key: macos_fastbuild_v2-bazel-cache-{{ checksum "WORKSPACE" }} + key: macos_fastbuild-bazel-cache-{{ checksum "WORKSPACE" }} paths: - /Users/distiller/.cache/bazel