# HG changeset patch # User Tormod Volden # Date 1456691844 -3600 # Node ID 61225db57f19cb0fe5c89fcfe038ce516b5e8daa # Parent c2030762022ba0485efda4b8ed4e474ad0098dd1 makefile: Remove test server uploading of snapshots More cruft that nobody uses. diff -r c2030762022b -r 61225db57f19 makefile --- 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