[GitHub Actions] GitHub-hosted runner on macOS 10.14 is deprecated

This commit is contained in:
Norio Nomura 2019-11-10 11:21:09 +09:00
parent 344d858c4f
commit ec7c6ccd8a
No known key found for this signature in database
GPG Key ID: D4A7318EB7F7138D
4 changed files with 5 additions and 16 deletions

View File

@ -18,7 +18,7 @@ on:
jobs:
pod_lib_lint:
name: pod lib lint
runs-on: macOS-10.14
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_11.2.app
steps:

View File

@ -19,7 +19,7 @@ on:
jobs:
Analyze:
runs-on: macOS-10.14
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_11.2.app
steps:

View File

@ -19,8 +19,8 @@ jobs:
Xcode:
strategy:
matrix:
xcode_version: ['9.4.1', '10', '10.1', '10.2.1', '10.3', '11', '11.1', '11.2']
runs-on: macOS-10.14
xcode_version: ['11', '11.1', '11.2']
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode_version }}.app
steps:

View File

@ -22,17 +22,6 @@ jobs:
strategy:
matrix:
xcode:
- version: '9.4.1'
- version: '10'
flags_for_test: -parallel-testing-enabled NO
- version: '10.1'
flags_for_test: -parallel-testing-enabled NO
- version: '10.2'
flags_for_test: -parallel-testing-enabled NO
- version: '10.2.1'
flags_for_test: -parallel-testing-enabled NO
- version: '10.3'
flags_for_test: -parallel-testing-enabled NO
- version: '11'
flags_for_test: -parallel-testing-enabled NO
- version: '11.1'
@ -40,7 +29,7 @@ jobs:
- version: '11.2'
flags_for_test: -parallel-testing-enabled NO -enableCodeCoverage YES
xcode_flags: ['-scheme Yams -project Yams.xcodeproj']
runs-on: macOS-10.14
runs-on: macos-latest
env:
DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode.version }}.app
steps: