diff options
author | James McCoy <jamessan@jamessan.com> | 2021-09-25 09:43:57 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-25 09:43:57 -0400 |
commit | 05d685be5244ec9f0a8bc042154d0da3449ba2f3 (patch) | |
tree | 56bca1f39b5515b515897fb2d172d781b45c928f | |
parent | 7cb34a341db72699798fbefe49e2ed6d9aa84cb1 (diff) | |
parent | 64a5eddc8939b9f482433892ba91eb7490fd460d (diff) | |
download | rneovim-05d685be5244ec9f0a8bc042154d0da3449ba2f3.tar.gz rneovim-05d685be5244ec9f0a8bc042154d0da3449ba2f3.tar.bz2 rneovim-05d685be5244ec9f0a8bc042154d0da3449ba2f3.zip |
Merge pull request #15776 from jamessan/macos-11-ci
Add macos-11 CI
-rw-r--r-- | .github/workflows/ci.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f75320048b..0dbe484108 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ on: jobs: unixish: - name: ${{ matrix.os }} ${{ matrix.flavor }} (cc=${{ matrix.cc }}) + name: ${{ matrix.runner }} ${{ matrix.flavor }} (cc=${{ matrix.cc }}) strategy: fail-fast: false matrix: @@ -30,6 +30,9 @@ jobs: - cc: clang runner: macos-10.15 os: osx + - cc: clang + runner: macos-11.0 + os: osx - flavor: functionaltest-lua cc: gcc runner: ubuntu-20.04 @@ -80,7 +83,7 @@ jobs: path: | ${{ env.CACHE_NVIM_DEPS_DIR }} ~/.ccache - key: ${{ runner.os }}-${{ matrix.flavor }}-${{ matrix.cc }}-${{ hashFiles('cmake/*', 'third-party/**', '**/CMakeLists.txt') }}-${{ github.base_ref }} + key: ${{ matrix.runner }}-${{ matrix.flavor }}-${{ matrix.cc }}-${{ hashFiles('cmake/*', 'third-party/**', '**/CMakeLists.txt') }}-${{ github.base_ref }} - name: Build third-party run: ./ci/before_script.sh |