This is an automated email from the ASF dual-hosted git repository. aboda pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
commit 88f5e04a20606f3e054582f637917d68873bcd43 Author: Ferenc Gerlits <[email protected]> AuthorDate: Mon Apr 12 19:02:35 2021 +0200 MINIFICPP-1543 Add 'brew update' to MacOS CI jobs ... and remove packages which are already installed, because these cause `brew install` to return with a non-zero status, for some reason. Signed-off-by: Arpad Boda <[email protected]> This closes #1051 --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 306ec15..4c17288 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,9 @@ jobs: macos-xcode11.2.1-ccache-${{github.ref}}- macos-xcode11.2.1-ccache-refs/heads/main- - id: install_dependencies - run: brew install ossp-uuid boost flex openssl python [email protected] xz libssh2 ccache sqliteodbc + run: | + brew update + brew install ossp-uuid boost flex [email protected] ccache sqliteodbc - id: setup_env run: | echo "PATH=/usr/lib/ccache:/usr/local/opt/ccache/bin:/usr/local/opt/ccache/libexec:$PATH" >> $GITHUB_ENV @@ -50,7 +52,9 @@ jobs: macos-xcode12.0-ccache-${{github.ref}}- macos-xcode12.0-ccache-refs/heads/main- - id: install_dependencies - run: brew install ossp-uuid boost flex openssl python [email protected] xz libssh2 ccache sqliteodbc + run: | + brew update + brew install ossp-uuid boost flex [email protected] ccache sqliteodbc - id: setup_env run: | echo "PATH=/usr/lib/ccache:/usr/local/opt/ccache/bin:/usr/local/opt/ccache/libexec:$PATH" >> $GITHUB_ENV
