diff options
author | Nicolas Lacasse <nlacasse@google.com> | 2019-01-17 11:50:20 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-01-17 11:51:22 -0800 |
commit | f89085219dca4b3b8a2f1d3ced9aaa232cd79925 (patch) | |
tree | 141ab4f4389993574b83155d2498c0ef70f64c5f /kokoro | |
parent | 12bc7834dccdcd21353fc476dc76a5c9bc0d47bb (diff) |
Pin containerd to v1.2.2. in integration tests.
We no longer need to depend on master, since v1.2.2 contains a commit to work
around "malformed input path" bug:
https://github.com/containerd/containerd/commit/27c6449c2c50f7e66076a4186e81aa3167e0dd5a
PiperOrigin-RevId: 229790405
Change-Id: Ia93b66959e6433bf096d6742be6064c1d7ed8b18
Diffstat (limited to 'kokoro')
-rwxr-xr-x | kokoro/run_tests.sh | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/kokoro/run_tests.sh b/kokoro/run_tests.sh index f84c9ff41..3343b3093 100755 --- a/kokoro/run_tests.sh +++ b/kokoro/run_tests.sh @@ -106,10 +106,7 @@ install_crictl_test_deps() { # 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 - # 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 + git checkout v1.2.2 make sudo -n -E make install |