Changeset 636
- Timestamp:
- Oct 18, 2007 11:44:20 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/testScripts/nightlyBuild.py
r633 r636 16 16 # -Get some information about the platform and put this in email failure message. 17 17 # -Implement Kipp's vpath (delete vpath instead of 'make distclean'). 18 # Break this file up into multiple files so it is manageable. 19 # Don't do build if 'svn update' doesn't change anything and prior test was OK. 18 # -Don't do build if 'svn update' doesn't change anything and prior test was OK. 20 19 # (no need to re-run if nothing has changed since prior run) 21 # Build both trunk and latest stable 22 # Build both optimized and debug (or have a set of config-site scripts to test?) 23 # Check the testing of the success criteria of each projects "make test" 24 # Implement "cbc -miplib" test for successful run. JohnF sent JP the criteria 25 # to test on in an email dated 10/12/2007 12:01pm 20 # -Build both trunk and latest stable 21 # -Build both optimized and debug (or have a set of config-site scripts to test?) 22 26 23 27 24 … … 77 74 continue 78 75 76 #--------------------------------------------------------------------- 77 # If there is are third part apps, then get these apps 78 #--------------------------------------------------------------------- 79 thirdPartyBaseDir=os.path.join(projectCheckOutDir,'ThirdParty') 80 if os.path.isdir(thirdPartyBaseDir) : 81 thirdPartyDirs = os.listdir(thirdPartyBaseDir) 82 for d in thirdPartyDirs : 83 thirdPartyDir=os.path.join(thirdPartyBaseDir,d) 84 install3rdPartyCmd=os.path.join(".",thirdPartyDir,"get."+d) 85 print install3rdPartyCmd 86 os.chdir(thirdPartyDir) 87 # NBosCommand.run(install3rdPartyCmd) 88 89 90 79 91 #--------------------------------------------------------------------- 80 92 # Should probably run make 'distclean' to do a build from scrath
Note: See TracChangeset
for help on using the changeset viewer.