From 40c097ff07c1cdcfa280371aaf04ff9534297449 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Fri, 8 Apr 2022 21:08:46 -0700 Subject: [PATCH] CI: consolidate Python requirements installation on macOS --- .gitlab-ci.yml | 2 -- ci/macos-install-runtime-dependencies.sh | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.40.0