changeset 3099:61225db57f19

makefile: Remove test server uploading of snapshots More cruft that nobody uses.
author Tormod Volden <debian.tormod@gmail.com>
date Sun, 28 Feb 2016 21:37:24 +0100
parents c2030762022b
children ed4c9b04f74e
files makefile
diffstat 1 files changed, 0 insertions(+), 36 deletions(-) [+]
line wrap: on
line diff
--- a/makefile	Sun Feb 28 21:37:23 2016 +0100
+++ b/makefile	Sun Feb 28 21:37:24 2016 +0100
@@ -80,39 +80,3 @@
 	@$(ECHO) "section of the makefile."
 endif
 
-# This section is to run a nightly test.
-# This requires you to setup a environment variable
-# called TESTSSHSERVER.
-# example would be: TESTSSHSERVER='testuser@localhost'
-# another example: TESTSSHSERVER='testuser@test.testhost.com'
-#
-# You are also required to setup a target path for your file
-# and the environment variable that is being used in this
-# section is called TESTSSHDIR
-ifdef	TESTSSHSERVER
-ifdef	TESTSSHDIR
-nightlytest: clean hgupdate dskcopy
-	$(MAKE) info > $(DSKDIR)/ReadMe
-	$(ARCHIVE) nitros9project $(DSKDIR)/*
-	scp nitros9project.zip $(TESTSSHSERVER):$(TESTSSHDIR)/nitros9project-$(shell date +%Y%m%d).zip
-	ssh $(TESTSSHSERVER) "./burst nitros9project $(shell date +%Y%m%d)"
-else
-nightlytest:
-	@$(ECHO) ""
-	@$(ECHO) ""
-	@$(ECHO) "You need to set the TESTSSHDIR variable"
-	@$(ECHO) "You may wish to refer to the nightlytest"
-	@$(ECHO) "section of the makefile to see what"
-	@$(ECHO) "needs to be setup first before using"
-	@$(ECHO) "this option"
-endif
-else
-nightlytest:
-	@$(ECHO) ""
-	@$(ECHO) ""
-	@$(ECHO) "You need to set the TESTSSHSERVER variable"
-	@$(ECHO) "You may wish to refer to the nightlytest"
-	@$(ECHO) "section of the makefile to see what"
-	@$(ECHO) "needs to be setup first before using"
-	@$(ECHO) "this option."
-endif