Skip to content

Commit

Permalink
Fix build on macOS. (#2090)
Browse files Browse the repository at this point in the history
sha256sum shouldn't be necessary, since we use gsha256sum on macOS.

Signed-off-by: Piotr Sikora <[email protected]>
  • Loading branch information
PiotrSikora authored and istio-testing committed Jan 24, 2019
1 parent 54d5807 commit 301a2eb
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 301a2eb

Please sign in to comment.