From: Vincent Fu Date: Thu, 22 Feb 2024 14:31:50 +0000 (-0500) Subject: ci: fix macOS sphinx install issues X-Git-Tag: fio-3.37~27 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=9af4af7ab40c4e505033d0e077cc42ac84996b09;p=fio.git ci: fix macOS sphinx install issues We have had a lot of failures installing sphinx on macOS. The latest failure suggested using pip instead of homebrew to install sphinx. So let's try that. https://github.com/axboe/fio/actions/runs/8004639029/job/21863677360?pr=1727 Signed-off-by: Vincent Fu --- diff --git a/ci/actions-install.sh b/ci/actions-install.sh index 76335fbc..6eb2d795 100755 --- a/ci/actions-install.sh +++ b/ci/actions-install.sh @@ -86,9 +86,8 @@ install_macos() { #echo "Updating homebrew..." #brew update >/dev/null 2>&1 echo "Installing packages..." - HOMEBREW_NO_AUTO_UPDATE=1 brew install cunit libnfs sphinx-doc pygments python-certifi - brew link sphinx-doc --force - pip3 install scipy six statsmodels + HOMEBREW_NO_AUTO_UPDATE=1 brew install cunit libnfs + pip3 install scipy six statsmodels sphinx } install_windows() {