diff options
-rwxr-xr-x | kokoro/run_tests.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kokoro/run_tests.sh b/kokoro/run_tests.sh index ea6440140..c78a7be96 100755 --- a/kokoro/run_tests.sh +++ b/kokoro/run_tests.sh @@ -65,7 +65,10 @@ installCrictl() ( # go get will exit with a status of 1 despite succeeding, so ignore errors. go get -d github.com/containerd/containerd || true cd ${GOPATH}/src/github.com/containerd/containerd - git checkout tags/v1.1.4 + # TODO: Switch to using a tagged version once one has been cut + # that contains fix in: + # https://github.com/containerd/containerd/commit/52de3717005eb20141c305bd93ff0d6ee5dfecb6 + git checkout master make sudo -n -E make install |