From c24f602407354e0fff5faff080699df25abd9915 Mon Sep 17 00:00:00 2001 From: Aleksa Sarai Date: Tue, 15 Aug 2017 03:26:38 +1000 Subject: [PATCH] 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 --- .travis.yml | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a9032a24b..fd8f79fd6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/Makefile b/Makefile index 8c09db5c2..0877a070e 100644 --- a/Makefile +++ b/Makefile @@ -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)