From: Matthew Fernandez Date: Sat, 9 Apr 2022 04:08:46 +0000 (-0700) Subject: CI: consolidate Python requirements installation on macOS X-Git-Tag: 4.0.0~114^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=40c097ff07c1cdcfa280371aaf04ff9534297449;p=graphviz CI: consolidate Python requirements installation on macOS --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 350725b67..36ba64fb8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1002,7 +1002,6 @@ macos-autotools-test: <<: *test_definition before_script: - source ci/macos-install-runtime-dependencies.sh - - python3 -m pip install --requirement requirements.txt - export build_system="autotools" needs: - job: "macos-autotools-build" @@ -1080,7 +1079,6 @@ macos-cmake-test: <<: *test_definition before_script: - source ci/macos-install-runtime-dependencies.sh - - python3 -m pip install --requirement requirements.txt - export build_system="cmake" - python3 gen_version.py --output GRAPHVIZ_VERSION needs: diff --git a/ci/macos-install-runtime-dependencies.sh b/ci/macos-install-runtime-dependencies.sh index ab343ada2..0dc687f77 100644 --- a/ci/macos-install-runtime-dependencies.sh +++ b/ci/macos-install-runtime-dependencies.sh @@ -38,3 +38,5 @@ export PATH=/opt/local/bin:${PATH} # lib/mingle dependency sudo port install libANN + +python3 -m pip install --requirement requirements.txt