From 005b41af54bfaed5d82d70719218546cd30ca561 Mon Sep 17 00:00:00 2001 From: Leon Lynch Date: Mon, 11 Dec 2023 19:23:18 +0100 Subject: [PATCH] Update Github Actions workflow for MacOS builds * Remove MacOS 11 builds because it is no longer support by Apple or Homebrew * Add MacOS 13 builds --- .github/workflows/macos-build.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/macos-build.yaml b/.github/workflows/macos-build.yaml index 4b6819f..0b236d8 100644 --- a/.github/workflows/macos-build.yaml +++ b/.github/workflows/macos-build.yaml @@ -15,10 +15,10 @@ jobs: fail-fast: false matrix: include: - - { name: "MacOS 11", os: macos-11, osx_arch: "x86_64;arm64", build_type: "Debug", fetch_deps: YES } - - { name: "MacOS 11", os: macos-11, osx_arch: "x86_64", build_type: "Release", fetch_deps: NO } - - { name: "MacOS 12", os: macos-12, osx_arch: "x86_64", build_type: "Debug", fetch_deps: NO } - - { name: "MacOS 12", os: macos-12, osx_arch: "x86_64;arm64", build_type: "Release", fetch_deps: YES } + - { name: "MacOS 12", os: macos-12, osx_arch: "x86_64;arm64", build_type: "Debug", fetch_deps: YES } + - { name: "MacOS 12", os: macos-12, osx_arch: "x86_64", build_type: "Release", fetch_deps: NO } + - { name: "MacOS 13", os: macos-13, osx_arch: "x86_64", build_type: "Debug", fetch_deps: NO } + - { name: "MacOS 13", os: macos-13, osx_arch: "x86_64;arm64", build_type: "Release", fetch_deps: YES } name: ${{ matrix.name }} build (static/${{ matrix.build_type }}) runs-on: ${{ matrix.os }}