Skip to content

Commit

Permalink
ci: use proper host os
Browse files Browse the repository at this point in the history
  • Loading branch information
KazuCocoa authored Nov 12, 2024
1 parent 024b7c0 commit cd5da8d
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/functional-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,21 @@ jobs:
fail-fast: false
matrix:
test_targets:
- XCODE_VERSION: '16.0.0'
- HOST_OS: 'macos-15'
XCODE_VERSION: '16.0.0'
IOS_VERSION: '18.0'
IOS_MODEL: iPhone 15 Plus
- XCODE_VERSION: '15.3'
- HOST_OS: 'macos-14'
XCODE_VERSION: '15.3'
IOS_VERSION: '17.4'
IOS_MODEL: iPhone 15 Plus
- XCODE_VERSION: 14.3.1
- HOST_OS: 'macos-13'
XCODE_VERSION: 14.3.1
IOS_VERSION: '16.4'
IOS_MODEL: iPhone 14 Plus

# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md
runs-on: macos-14
runs-on: ${{matrix.test_targets.HOST_OS}}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down

0 comments on commit cd5da8d

Please sign in to comment.