From a127bef9d78937368ffa08a11d93480831553168 Mon Sep 17 00:00:00 2001 From: Chris Lumens Date: Tue, 21 Jul 2015 16:24:21 -0400 Subject: [PATCH] Add a new makefile target that does everything needed for jenkins. We should have as much of the logic of how the CI tests are run in source control as possible, so that's what this target is for. Besides this, jenkins just runs a "git clean" first. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index a0c80337..128d5994 100644 --- a/Makefile +++ b/Makefile @@ -50,3 +50,5 @@ local: @dir=$$PWD; cd /var/tmp; tar --gzip -cSpf $$dir/$(PKGNAME)-$(VERSION).tar.gz $(PKGNAME)-$(VERSION) @rm -rf /var/tmp/$(PKGNAME)-$(VERSION) @echo "The archive is in $(PKGNAME)-$(VERSION).tar.gz" + +ci: check