From 6c96b39a2870610e453c280ea2bc6140df5a3a11 Mon Sep 17 00:00:00 2001 From: Phil Estes Date: Mon, 1 Oct 2018 09:01:57 -0400 Subject: [PATCH] Add common check scripts and project references Signed-off-by: Phil Estes --- .travis.yml | 13 ++++++++++++- README.md | 10 ++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 00627fc..40998c8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,4 +3,15 @@ language: go go: - "1.10.x" -script: go test -race -v ./... +install: + - go get -u github.com/vbatts/git-validation + - go get -u github.com/kunalkushwaha/ltag + - go get -t ./... + +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 -race -v ./... diff --git a/README.md b/README.md index d1eed6b..c345c84 100644 --- a/README.md +++ b/README.md @@ -50,3 +50,13 @@ TODO: - [ ] Document protocol layout - [ ] Add testing under concurrent load to ensure - [ ] Verify connection error handling + +# Project details + +ttrpc is a containerd sub-project, licensed under the [Apache 2.0 license](./LICENSE). +As a containerd sub-project, you will find the: + * [Project governance](https://github.com/containerd/project/blob/master/GOVERNANCE.md), + * [Maintainers](https://github.com/containerd/project/blob/master/MAINTAINERS), + * and [Contributing guidelines](https://github.com/containerd/project/blob/master/CONTRIBUTING.md) + +information in our [`containerd/project`](https://github.com/containerd/project) repository.