From 7a3f9a2add58deecaa55e21248b31aacc2d430bf Mon Sep 17 00:00:00 2001 From: Scott Arnette Date: Tue, 13 Apr 2021 09:10:50 -0400 Subject: [PATCH] Fix issue with brew by updating, then upgrading packages. --- .cicd/pipeline.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.cicd/pipeline.yml b/.cicd/pipeline.yml index 10a3f177..272dee8e 100644 --- a/.cicd/pipeline.yml +++ b/.cicd/pipeline.yml @@ -39,6 +39,7 @@ steps: - label: ":darwin: macOS 10.14 - Build" command: + - "brew update && brew upgrade" - "brew install git cmake" - "git clone $BUILDKITE_REPO eos-vm && cd eos-vm && git checkout $BUILDKITE_COMMIT && git submodule update --init --recursive" - "cd eos-vm && ./.cicd/build.sh" @@ -59,6 +60,7 @@ steps: - label: ":darwin: macOS 10.15 - Build" command: + - "brew update && brew upgrade" - "brew install git cmake" - "git clone $BUILDKITE_REPO eos-vm && cd eos-vm && git checkout $BUILDKITE_COMMIT && git submodule update --init --recursive" - "cd eos-vm && ./.cicd/build.sh" @@ -117,6 +119,7 @@ steps: - label: ":darwin: macOS 10.14 - Test" command: + - "brew update && brew upgrade" - "brew install git cmake" - "git clone $BUILDKITE_REPO eos-vm && cd eos-vm && git checkout $BUILDKITE_COMMIT && git submodule update --init --recursive" - "cd eos-vm && ./.cicd/test.sh ':darwin: macOS 10.14 - Build'" @@ -135,6 +138,7 @@ steps: - label: ":darwin: macOS 10.15 - Test" command: + - "brew update && brew upgrade" - "brew install git cmake" - "git clone $BUILDKITE_REPO eos-vm && cd eos-vm && git checkout $BUILDKITE_COMMIT && git submodule update --init --recursive" - "cd eos-vm && ./.cicd/test.sh ':darwin: macOS 10.15 - Build'"