Fix node e2e test.

Signed-off-by: Lantao Liu <lantaol@google.com>
This commit is contained in:
Lantao Liu 2017-08-22 16:58:50 +00:00
parent 50b01812ce
commit 77095f569a

View File

@ -47,11 +47,11 @@ jobs:
go: 1.8.x go: 1.8.x
- stage: E2E Test - stage: E2E Test
script: script:
- test "${TRAVIS_EVENT_TYPE}" != "cron" && exit 0 - test "${TRAVIS_EVENT_TYPE}" != "cron" && exit 0 || true
- make install.deps - make install.deps
- make test-e2e-node - make test-e2e-node
after_script: after_script:
# TODO(random-liu): Upload log to GCS. # TODO(random-liu): Upload log to GCS.
- test "${TRAVIS_EVENT_TYPE}" != "cron" && exit 0 - test "${TRAVIS_EVENT_TYPE}" != "cron" && exit 0 || true
- cat /tmp/test-e2e-node/cri-containerd.log - cat /tmp/test-e2e-node/cri-containerd.log
go: 1.8.x go: 1.8.x