From 6f214ab089ba136c71fc0815b04fdece7ed09696 Mon Sep 17 00:00:00 2001 From: Patrick Lewis Date: Thu, 17 Dec 2020 06:42:26 -0800 Subject: [PATCH] feat(CI/macOS): add macos-11.0 Big Sur to CI build (#4001) --- .github/workflows/core_build.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/core_build.yml b/.github/workflows/core_build.yml index 8c0150b19..983069a89 100644 --- a/.github/workflows/core_build.yml +++ b/.github/workflows/core_build.yml @@ -68,8 +68,12 @@ jobs: mac-build: strategy: fail-fast: false - runs-on: macos-10.15 - name: macos-10.15 + matrix: + os: + - macos-10.15 + - macos-11.0 + runs-on: ${{ matrix.os }} + name: ${{ matrix.os }} if: github.repository == 'azerothcore/azerothcore-wotlk' steps: - uses: actions/checkout@v2 @@ -77,10 +81,10 @@ jobs: uses: actions/cache@v1.1.2 with: path: /Users/runner/.ccache - key: ccache:macos-10.15:${{ github.ref }}:${{ github.sha }} + key: ccache:${{ matrix.os }}:${{ github.ref }}:${{ github.sha }} restore-keys: | - ccache:macos-10.15:${{ github.ref }} - ccache:macos-10.15 + ccache:${{ matrix.os }}:${{ github.ref }} + ccache:${{ matrix.os }} - name: Configure OS run: source ./apps/ci/mac/ci-install.sh - name: Build