diff options
author | Kang Huaishuai <khs1994@khs1994.com> | 2019-11-01 10:36:22 +0800 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2019-10-31 19:36:22 -0700 |
commit | 36d4256f1cb9b866c710b44b0e594e712566ac2a (patch) | |
tree | 26c55d12501fc97e8814643d5531ee341d24cd07 | |
parent | af61dbed874863db308f3a421ad142a7f106687a (diff) |
Upgrade github actions mac environment to macos-latest (#3250)
-rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 03984d5ca..7c7e7851a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,22 +9,22 @@ jobs: timeout-minutes: 60 strategy: matrix: - os: [macOS-10.14, windows-2019, ubuntu-16.04] + os: [macOS-latest, windows-2019, ubuntu-16.04] kind: ['test', 'test_debug', 'test_std', 'bench', 'lint'] exclude: - os: windows-2019 kind: 'bench' - - os: macOS-10.14 + - os: macOS-latest kind: 'bench' - os: windows-2019 kind: 'lint' - - os: macOS-10.14 + - os: macOS-latest kind: 'lint' - os: windows-2019 kind: 'test_debug' - - os: macOS-10.14 + - os: macOS-latest kind: 'test_debug' steps: - name: Configure git |