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]>
(cherry picked from commit 4818610)
Signed-off-by: Samuel Karp <[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
@@ -50,18 +50,24 @@ jobs:
50
50
51
51
build:
52
52
name: Build Release Binaries
53
-
runs-on: ${{ matrix.os }}
53
+
runs-on: ubuntu-${{ matrix.ubuntu }}
54
54
needs: [check]
55
55
timeout-minutes: 20
56
56
strategy:
57
57
matrix:
58
-
os: [ubuntu-18.04]
59
-
platform:
60
-
- linux/amd64
61
-
- linux/arm64
62
-
- linux/ppc64le
63
-
- linux/riscv64
64
-
- windows/amd64
58
+
include:
59
+
# Choose an old release of Ubuntu to avoid glibc issue https://github.com/containerd/containerd/issues/7255
0 commit comments