]> granicus.if.org Git - graphviz/commitdiff
CI: consolidate Python requirements installation on macOS
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 9 Apr 2022 04:08:46 +0000 (21:08 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Mon, 11 Apr 2022 14:49:01 +0000 (07:49 -0700)
.gitlab-ci.yml
ci/macos-install-runtime-dependencies.sh

index 350725b670c158322435fb38e7828bc4dc2a6a59..36ba64fb8424028313ee81206678fd2df7d7628d 100644 (file)
@@ -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:
index ab343ada2b6fce8615f040a543a3151abc3538fc..0dc687f77310583d25af4453bfeb689e5999afb9 100644 (file)
@@ -38,3 +38,5 @@ export PATH=/opt/local/bin:${PATH}
 
 # lib/mingle dependency
 sudo port install libANN
+
+python3 -m pip install --requirement requirements.txt