Skip to content

remove ubuntu-20 #684

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
Jan 3, 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
4 changes: 3 additions & 1 deletion .github/workflows/check-binary-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ jobs:
name: Check binary size
strategy:
matrix:
platform: [ubuntu-latest, windows-latest]
# FIXME(jubilee): the immutable upload needs us to disambiguate things
# platform: [ubuntu-latest, windows-latest]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
permissions:
contents: read
Expand Down
16 changes: 5 additions & 11 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,6 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-20.04
rust: stable
- os: ubuntu-20.04
rust: beta
- os: ubuntu-20.04
rust: nightly
- os: ubuntu-24.04
rust: stable
- os: ubuntu-24.04
Expand Down Expand Up @@ -185,7 +179,7 @@ jobs:

docker:
name: Docker
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -219,7 +213,7 @@ jobs:

rustfmt:
name: Rustfmt
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -230,7 +224,7 @@ jobs:

build:
name: Build Targets
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
strategy:
matrix:
target:
Expand Down Expand Up @@ -258,7 +252,7 @@ jobs:
fail-fast: false
matrix:
include:
- os: ubuntu-20.04
- os: ubuntu-24.04
- os: windows-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -270,7 +264,7 @@ jobs:

miri:
name: Miri
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand Down
Loading