ci: remove libseccomp-dev installation for nightly#8768
ci: remove libseccomp-dev installation for nightly#8768dmcgowan merged 1 commit intocontainerd:mainfrom
Conversation
|
Hi @akhilerm. Thanks for your PR. I'm waiting for a containerd member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
|
/ok-to-test |
cpuguy83
left a comment
There was a problem hiding this comment.
I think you also need to remove lines 49-52
|
@cpuguy83 Done. |
.github/workflows/nightly.yml
Outdated
| @@ -46,23 +46,13 @@ jobs: | |||
| sudo add-apt-repository -y "deb [arch=arm64,s390x,ppc64el,riscv64] http://ports.ubuntu.com/ubuntu-ports/ $(lsb_release -sc) main" || true | |||
There was a problem hiding this comment.
These lines should no longer be necessary either; the crossbuild-essential-* packages are "an {arm64,riscv,s390x,...} cross-compiler for amd64" -- we have no need for foreign-arch repositories with this change.
There was a problem hiding this comment.
@neersighted removed the other arch repositories.
since libseccomp is required only for building runc and we are only
building containerd binaries in nightly, the libseccomp-dev dependency
is removed. Foreign arch repositories are now removed since
crossbuild-essential-* packages are {arm64, ppc64el,..} cross compiler
packages for amd64 and arch specific repositories are not required.
Signed-off-by: Akhil Mohan <[email protected]>
|
/retest |
|
/assign @dmcgowan For merging |
since libseccomp is required only for building runc and we are only building containerd binaries in nightly, the libseccomp-dev dependency is removed