From eef0c60ddb4252bd42fef531d116c12913cc9b5f Mon Sep 17 00:00:00 2001 From: Hugues Delorme Date: Thu, 30 Jan 2025 18:47:47 +0100 Subject: [PATCH] CI: simplify build matrix on macOS --- .github/workflows/ci_macos.yml | 8 ++------ .github/workflows/ci_macos_conda.yml | 2 +- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci_macos.yml b/.github/workflows/ci_macos.yml index 5baf36e0..3e71a36d 100644 --- a/.github/workflows/ci_macos.yml +++ b/.github/workflows/ci_macos.yml @@ -6,14 +6,10 @@ jobs: build-macos: strategy: matrix: - include: - - qt_version_name: 5.15 - qt_version_major: 5 - - qt_version_name: 6.7 - qt_version_major: 6 + qt_version_major: [5, 6] runs-on: macos-latest - name: build-macos-qt${{matrix.qt_version_name}} + name: build-macos-qt${{matrix.qt_version_major}} steps: - name: Checkout diff --git a/.github/workflows/ci_macos_conda.yml b/.github/workflows/ci_macos_conda.yml index b3371660..f4d3028b 100644 --- a/.github/workflows/ci_macos_conda.yml +++ b/.github/workflows/ci_macos_conda.yml @@ -5,7 +5,7 @@ on: [push] jobs: build-macos: runs-on: macos-latest - name: build-macos-qt${{matrix.qt_version_name}} + name: build-macos-qt5 steps: - name: Checkout