aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Fu <vincent.fu@samsung.com>2024-02-22 09:31:50 -0500
committerVincent Fu <vincent.fu@samsung.com>2024-02-22 20:01:27 -0500
commit9af4af7ab40c4e505033d0e077cc42ac84996b09 (patch)
treef94c8eeec693c7c40196d729941aef471147f4bc
parentd848a55ba876e42c5f3e39c09ad55f141c540ece (diff)
downloadfio-9af4af7ab40c4e505033d0e077cc42ac84996b09.tar.gz
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 <vincent.fu@samsung.com>
-rwxr-xr-xci/actions-install.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/ci/actions-install.sh b/ci/actions-install.sh
index 76335fbc3..6eb2d795e 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() {