From 3fc5a909d1750c39c769acaede1917068427bffa Mon Sep 17 00:00:00 2001 From: Mike Brown Date: Thu, 16 Apr 2020 12:17:21 -0500 Subject: [PATCH] have moved these tests to github actions Signed-off-by: Mike Brown --- .travis.yml | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 338d1eaa1..000000000 --- a/.travis.yml +++ /dev/null @@ -1,45 +0,0 @@ -git: - depth: 150 - -language: go -go: - - 1.13.9 - - 1.14.1 - -env: - - GO111MODULE=off - -services: - - docker - -cache: - directories: - - "${HOME}/google-cloud-sdk/" - -before_install: - - sudo apt-get update - # Enable ipv6 for dualstack integration test. - - sudo sysctl net.ipv6.conf.all.disable_ipv6=0 - -install: - - sudo apt-get install btrfs-tools - - sudo apt-get install libseccomp2 - - sudo apt-get install libseccomp-dev - - sudo apt-get install socat - -before_script: - - export PATH=$HOME/gopath/bin:$PATH - -script: - - make .install.gitvalidation - - make .gitvalidation - - make install.deps - - make containerd - - sudo PATH=$PATH GOPATH=$GOPATH make install-containerd - - make test - - make test-integration - - make test-cri -after_script: - # Abuse travis to preserve the log. - - cat /tmp/test-integration/containerd.log - - cat /tmp/test-cri/containerd.log