You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
release: rollback Ubuntu to 18.04 (except for riscv64)
Partially revert 0e56e4f
Rollback the build environment from Ubuntu 22.04 to 18.04, except for riscv64 that isn't supported by Ubuntu 18.04.
Fix issue 7255 (`1.6.7 can't be run on Ubuntu LTS 20.04 (GLIBC_2.34 not found)`)
Signed-off-by: Akihiro Suda <[email protected]>
Copy file name to clipboardExpand all lines: .github/workflows/release.yml
+16-10Lines changed: 16 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -53,18 +53,24 @@ jobs:
53
53
54
54
build:
55
55
name: Build Release Binaries
56
-
runs-on: ${{ matrix.os }}
56
+
runs-on: ubuntu-${{ matrix.ubuntu }}
57
57
needs: [check]
58
58
timeout-minutes: 10
59
59
strategy:
60
60
matrix:
61
-
os: [ubuntu-18.04]
62
-
platform:
63
-
- linux/amd64
64
-
- linux/arm64
65
-
- linux/ppc64le
66
-
- linux/riscv64
67
-
- windows/amd64
61
+
include:
62
+
# Choose an old release of Ubuntu to avoid glibc issue https://github.com/containerd/containerd/issues/7255
0 commit comments