We have to migrate ubuntu-18.04 CI to 20.04 or 22.04:
|
integration-linux: |
|
name: Linux Integration |
|
runs-on: ubuntu-18.04 |
But we have to keep using (containerized) 18.04 for building the release binaries:
|
# Choose an old release of Ubuntu to avoid glibc issue https://github.com/containerd/containerd/issues/7255 |
|
- ubuntu: 18.04 |
|
platform: linux/amd64 |
|
- ubuntu: 18.04 |
|
platform: linux/arm64 |
|
- ubuntu: 18.04 |
|
platform: linux/ppc64le |
|
# riscv64 isn't supported by Ubuntu 18.04 |
|
- ubuntu: 22.04 |
|
platform: linux/riscv64 |
|
- ubuntu: 18.04 |
|
platform: windows/amd64 |
We have to migrate ubuntu-18.04 CI to 20.04 or 22.04:
containerd/.github/workflows/ci.yml
Lines 388 to 390 in a042681
But we have to keep using (containerized) 18.04 for building the release binaries:
containerd/.github/workflows/release.yml
Lines 62 to 73 in a042681