From b1e202c32724e82779544365528a1a082b335553 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Fri, 11 May 2018 13:56:54 +0900 Subject: [PATCH] fix RUNC.md vs vendor.conf mismatch Actually we have been testing containerd with the runc version that is defined in vendor.conf rather than the one defined in RUNC.md. (`script/setup/install-runc`). This commit makes sure that the revision defined in vendor.conf is always the desired one. Signed-off-by: Akihiro Suda --- RUNC.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/RUNC.md b/RUNC.md index f0ecc53ad..02b19219d 100644 --- a/RUNC.md +++ b/RUNC.md @@ -1,8 +1,6 @@ containerd is built with OCI support and with support for advanced features provided by [runc](https://github.com/opencontainers/runc). -We depend on a specific `runc` version when dealing with advanced features. You should have a specific runc build for development. The current supported runc commit is: - -RUNC_COMMIT = a618ab5a0186905949ee463dbb762c3d23e12a80 +We depend on a specific `runc` version when dealing with advanced features. You should have a specific runc build for development. The current supported runc commit is described in [`vendor.conf`](vendor.conf). Please refer to the line that starts with `github.com/opencontainers/runc`. For more information on how to clone and build runc see the runc Building [documentation](https://github.com/opencontainers/runc#building).