From f00e636f38c1d594b3b82ae5661843ab7ad132fc Mon Sep 17 00:00:00 2001 From: Ivan Gagis Date: Thu, 16 Dec 2021 17:46:47 +0200 Subject: [PATCH] build conan package for different macos versions --- .github/workflows/ci.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4bc0f6d..f124cc55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -276,8 +276,14 @@ jobs: if: startsWith(github.ref, 'refs/tags/') ##### conan - macosx ##### conan-macosx: - name: conan - macosx - runs-on: macos-latest + strategy: + fail-fast: false + matrix: + os: + - macos-10.15 + - macos-11 + name: conan - ${{ matrix.os }} + runs-on: ${{ matrix.os }} steps: - name: git clone uses: myci-actions/checkout@master