From f041557e57e1d1972c6549cc6062727331a6102c Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Tue, 27 Apr 2021 21:32:01 +0900 Subject: [PATCH 1/2] README.md: fix CI badge Signed-off-by: Akihiro Suda --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c899bdd..0bf56a4 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # go-runc -[![Build Status](https://travis-ci.org/containerd/go-runc.svg?branch=master)](https://travis-ci.org/containerd/go-runc) +[![Build Status](https://github.com/containerd/go-runc/workflows/CI/badge.svg)](https://github.com/containerd/go-runc/actions?query=workflow%3ACI) [![codecov](https://codecov.io/gh/containerd/go-runc/branch/master/graph/badge.svg)](https://codecov.io/gh/containerd/go-runc) This is a package for consuming the [runc](https://github.com/opencontainers/runc) binary in your Go applications. From 4726cd60a1ad3f0be38d97333f6ab4d39d5f777e Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Tue, 27 Apr 2021 21:32:16 +0900 Subject: [PATCH 2/2] remove .travis.yml Signed-off-by: Akihiro Suda --- .travis.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 724ee09..0000000 --- a/.travis.yml +++ /dev/null @@ -1,21 +0,0 @@ -language: go -go: - - 1.13.x - - 1.14.x - - 1.15.x - -install: - - go get -t ./... - - go get -u github.com/vbatts/git-validation - - go get -u github.com/kunalkushwaha/ltag - -before_script: - - pushd ..; git clone https://github.com/containerd/project; popd - -script: - - DCO_VERBOSITY=-q ../project/script/validate/dco - - ../project/script/validate/fileheader ../project/ - - go test -v -race -covermode=atomic -coverprofile=coverage.txt ./... - -after_success: - - bash <(curl -s https://codecov.io/bash)