From: Matthew Fernandez Date: Sat, 9 Apr 2022 03:59:52 +0000 (-0700) Subject: CI: rename macOS scripts to put 'macos' as a prefix instead of suffix X-Git-Tag: 4.0.0~114^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=12b56107aa709531ef6ddcb16879903b9eef95d0;p=graphviz CI: rename macOS scripts to put 'macos' as a prefix instead of suffix This aligns these with the pattern used for the MinGW and Cygwin builds, making the ci/ directory a little more intuitive. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0a5a97933..12ecc8311 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -78,7 +78,7 @@ portable-source: stage: build needs: [] # FIXME: remove when building from portable source script: - - source ci/install-build-dependencies-macos.sh + - source ci/macos-install-build-dependencies.sh - logfile=`mktemp` - ci/build.sh 2>&1 | tee $logfile - echo "$CI_JOB_NAME-warnings `grep -c 'warning:' $logfile`" | tee metrics.txt @@ -1001,7 +1001,7 @@ fedora35-test: macos-autotools-test: <<: *test_definition before_script: - - source ci/install-runtime-dependencies-macos.sh + - source ci/macos-install-runtime-dependencies.sh - python3 -m pip install --requirement requirements.txt - export build_system="autotools" needs: @@ -1079,7 +1079,7 @@ centos7-cmake-test: macos-cmake-test: <<: *test_definition before_script: - - source ci/install-runtime-dependencies-macos.sh + - 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 diff --git a/ci/install-build-dependencies-macos.sh b/ci/macos-install-build-dependencies.sh similarity index 100% rename from ci/install-build-dependencies-macos.sh rename to ci/macos-install-build-dependencies.sh diff --git a/ci/install-runtime-dependencies-macos.sh b/ci/macos-install-runtime-dependencies.sh similarity index 100% rename from ci/install-runtime-dependencies-macos.sh rename to ci/macos-install-runtime-dependencies.sh