File tree Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Expand file tree Collapse file tree 3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -32,4 +32,5 @@ before_install:
3232script :
3333 - git-validation -run DCO,short-subject -v
3434 - make BUILDTAGS="${BUILDTAGS}"
35+ - make BUILDTAGS="${BUILDTAGS}" oci-runtime-validation
3536 - make BUILDTAGS="${BUILDTAGS}" clean ci
Original file line number Diff line number Diff line change @@ -115,6 +115,9 @@ validate:
115115 script/validate-c
116116 $(GO ) vet $(allpackages )
117117
118+ oci-runtime-validation :
119+ script/oci-runtime-validation
120+
118121ci : validate test release
119122
120123# memoize allpackages, so that it's executed only once and only if used
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -e
4+ set -x
5+
6+ REPOPATH=" $( cd " $( dirname " $0 " ) /.." ; pwd -P ) "
7+ RUNTIME=" $REPOPATH /runc"
8+
9+ # Install and run runtime-tools' validation tests
10+ npm install -g tap
11+ go get -d -u github.com/opencontainers/runtime-tools || true
12+
13+ cd $GOPATH /src/github.com/opencontainers/runtime-tools
14+ make
15+ sudo PATH=$PATH :$( dirname $( which node) ) TAP=$( which tap) RUNTIME=$RUNTIME make localvalidation \
16+ || true # All tests don't pass yet. For now, only display results without returning an error.
17+
You can’t perform that action at this time.
0 commit comments