Skip to content
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

Upgrade Ubuntu image on GHA to 22.04 #2890

Merged
merged 2 commits into from Aug 24, 2022
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/bors.yml
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
docker_linux_tier1:
name: Docker Linux Tier1
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: true
matrix:
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:

style_check:
name: Style check
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
with:
Expand All @@ -98,7 +98,7 @@ jobs:
docker_linux_tier2:
name: Docker Linux Tier2
needs: [docker_linux_tier1, style_check]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: true
max-parallel: 12
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
if: ${{ false }} # This is currently broken
name: Docker Linux Build-Std Targets
needs: [docker_linux_tier1, style_check]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: true
max-parallel: 12
Expand All @@ -179,7 +179,7 @@ jobs:
docker_switch:
name: Docker Switch
needs: [docker_linux_tier1, style_check]
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
with:
Expand All @@ -193,7 +193,7 @@ jobs:
build_channels_linux:
name: Build Channels Linux
needs: docker_linux_tier2
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
OS: linux
strategy:
Expand Down Expand Up @@ -277,7 +277,7 @@ jobs:
semver_linux:
if: ${{ false }} # This is currently broken
name: Semver Linux
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
continue-on-error: true
steps:
- uses: actions/checkout@v3
Expand All @@ -302,7 +302,7 @@ jobs:

docs:
name: Generate documentation
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: docker_linux_tier2
steps:
- uses: rust-lang/simpleinfra/github-actions/cancel-outdated-builds@master
Expand All @@ -323,7 +323,7 @@ jobs:
end_success:
name: bors build finished
if: github.event.pusher.name == 'bors' && success()
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [
docker_linux_tier1,
docker_linux_tier2,
Expand All @@ -345,7 +345,7 @@ jobs:
end_failure:
name: bors build finished
if: github.event.pusher.name == 'bors' && (failure() || cancelled())
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [
docker_linux_tier1,
docker_linux_tier2,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
upload_docs:
name: Upload documentation
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: github.repository == 'rust-lang/libc'

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
docker_linux_tier1:
name: Docker Linux Tier1
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: true
matrix:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:

style_check:
name: Style check
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Setup Rust toolchain
Expand Down
3 changes: 3 additions & 0 deletions ci/run-docker.sh
@@ -1,5 +1,8 @@
#!/usr/bin/env sh

# Disable SC2086 as it confuses the docker command.
# shellcheck disable=SC2086

# Small script to run tests for a target (or all targets) inside all the
# respective docker images.

Expand Down