8000 build!: Ubuntu 20.04のサポートを切る by qryxip · Pull Request #1028 · VOICEVOX/voicevox_core · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

build!: Ubuntu 20.04のサポートを切る #1028

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

jobs:
audit:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install cargo-deny
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,31 +66,31 @@ jobs:
"can_skip_in_simple_test": true
},
{
"os": "ubuntu-20.04",
"os": "ubuntu-22.04",
"target": "x86_64-unknown-linux-gnu",
"artifact_name": "linux-x64",
"c_release_format": "plain-cdylib",
"python_whl": true,
"can_skip_in_simple_test": false
},
{
"os": "ubuntu-20.04",
"os": "ubuntu-22.04",
"target": "aarch64-unknown-linux-gnu",
"artifact_name": "linux-arm64",
"c_release_format": "plain-cdylib",
"python_whl": true,
"can_skip_in_simple_test": true
},
{
"os": "ubuntu-20.04",
"os": "ubuntu-22.04",
"target": "aarch64-linux-android",
"artifact_name": "android-arm64",
"c_release_format": "plain-cdylib",
"python_whl": false,
"can_skip_in_simple_test": true
},
{
"os": "ubuntu-20.04",
"os": "ubuntu-22.04",
"target": "x86_64-linux-android",
"artifact_name": "android-x86_64",
"c_release_format": "plain-cdylib",
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 @@ -47,11 +47,11 @@ jobs:

- name: download-linux-x64
target: x86_64-unknown-linux-gnu
os: ubuntu-20.04
os: ubuntu-22.04

- name: download-linux-arm64
target: aarch64-unknown-linux-gnu
os: ubuntu-20.04
os: ubuntu-22.04

- name: download-osx-x64
target: x86_64-apple-darwin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/licenses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
licenses:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install cargo-deny
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ jobs:
{ "os": "windows-2022", "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 }
{ "os": "ubuntu-22.04", "can_skip_in_simple_test": false },
{ "os": "ubuntu-24.04", "can_skip_in_simple_test": true }
]'

# FIXME: composite action に切り出す
Expand Down
0