This is an automated email from the ASF dual-hosted git repository. fgerlits pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
commit 8a6518e526e809403feb4bc8441c03bc9b9a538f Author: Gabor Gyimesi <[email protected]> AuthorDate: Tue Jan 10 10:18:55 2023 +0100 MINIFICPP-2023 Skip brew update to avoid python link failure Signed-off-by: Ferenc Gerlits <[email protected]> This closes #1488 --- .github/workflows/ci.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e4ce4e79..c3017324e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,10 +21,9 @@ jobs: macos-xcode-ccache-refs/heads/main- - id: install_dependencies run: | - brew update - brew reinstall wget - brew install --overwrite [email protected] [email protected] - brew install ossp-uuid flex lua ccache sqliteodbc automake autoconf + # Skip brew update until https://github.com/actions/setup-python/issues/577 is fixed + # brew update + HOMEBREW_NO_AUTO_UPDATE=1 brew install ossp-uuid flex lua ccache sqliteodbc automake autoconf - id: setup_env name: setup enviroment run: |
