ci: smoke-test the release script

To make sure that `make release` doesn't suddenly break after we've cut
a release, smoke-test the release scripts. The script won't fail if GPG
keys aren't found, so running in CI shouldn't be a huge issue.

Signed-off-by: Aleksa Sarai <asarai@suse.de>
This commit is contained in:
Aleksa Sarai 2017-08-15 03:26:38 +10:00
parent ed68ee1e10
commit c24f602407
No known key found for this signature in database
GPG Key ID: 9E18AA267DDB8DB4
2 changed files with 2 additions and 2 deletions

View File

@ -30,4 +30,4 @@ before_install:
script:
- git-validation -run DCO,short-subject -v
- make BUILDTAGS="${BUILDTAGS}"
- make BUILDTAGS="${BUILDTAGS}" clean validate test
- make BUILDTAGS="${BUILDTAGS}" clean ci

View File

@ -115,7 +115,7 @@ validate:
script/validate-gofmt
$(GO) vet $(allpackages)
ci: validate localtest
ci: validate test release
# memoize allpackages, so that it's executed only once and only if used
_allpackages = $(shell $(GO) list ./... | grep -v vendor)