Skip to content

Commit

Permalink
remove!: macOS 12のサポートを切る (#884)
Browse files Browse the repository at this point in the history
  • Loading branch information
qryxip authored Dec 3, 2024
1 parent 4c1297a commit e72b909
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,39 +108,39 @@ jobs:
"can_skip_in_simple_test": true
},
{
"os": "macos-12",
"os": "macos-13",
"target": "aarch64-apple-darwin",
"artifact_name": "osx-arm64",
"c_release_format": "plain-cdylib",
"python_whl": true,
"can_skip_in_simple_test": false
},
{
"os": "macos-12",
"os": "macos-13",
"target": "x86_64-apple-darwin",
"artifact_name": "osx-x64",
"c_release_format": "plain-cdylib",
"python_whl": true,
"can_skip_in_simple_test": true
},
{
"os": "macos-12",
"os": "macos-13",
"target": "aarch64-apple-ios",
"artifact_name": "ios-arm64-cpu",
"c_release_format": "ios-xcframework",
"python_whl": false,
"can_skip_in_simple_test": true
},
{
"os": "macos-12",
"os": "macos-13",
"target": "aarch64-apple-ios-sim",
"artifact_name": "ios-arm64-cpu-sim",
"c_release_format": "ios-xcframework",
"python_whl": false,
"can_skip_in_simple_test": true
},
{
"os": "macos-12",
"os": "macos-13",
"target": "x86_64-apple-ios",
"artifact_name": "ios-x64-cpu",
"c_release_format": "ios-xcframework",
Expand Down Expand Up @@ -336,7 +336,7 @@ jobs:
build_xcframework:
if: ${{ !(github.event_name != 'release' && github.event_name != 'workflow_dispatch') }} # !env.IS_SIMPLE_TEST と同じ
needs: [config, build_and_deploy]
runs-on: macos-12
runs-on: macos-13
env:
IOS_X86_64_PATH: artifact/voicevox_core-x86_64-apple-ios
IOS_AARCH64_SIM_PATH: artifact/voicevox_core-aarch64-apple-ios-sim
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_and_deploy_downloader.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ jobs:

- name: download-osx-x64
target: x86_64-apple-darwin
os: macos-12
os: macos-13

- name: download-osx-arm64
target: aarch64-apple-darwin
os: macos-12
os: macos-13

runs-on: ${{ matrix.os }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ jobs:
includes='[
{ "os": "windows-2019", "can_skip_in_simple_test": true },
{ "os": "windows-2022", "can_skip_in_simple_test": true },
{ "os": "macos-12", "can_skip_in_simple_test": false },
{ "os": "macos-13", "can_skip_in_simple_test": true },
{ "os": "macos-13", "can_skip_in_simple_test": false },
{ "os": "macos-14", "can_skip_in_simple_test": true },
{ "os": "ubuntu-20.04", "can_skip_in_simple_test": false },
{ "os": "ubuntu-22.04", "can_skip_in_simple_test": true }
]'
Expand Down

0 comments on commit e72b909

Please sign in to comment.