Skip to content

Commit

Permalink
adding internal sumo game to nightly build
Browse files Browse the repository at this point in the history
git-svn-id: file:///home/behr_mi/git/sumo_synched/trunk/sumo@17577 afbd958f-9f77-42d5-a016-97a22340ccf4
  • Loading branch information
behrisch committed Jan 9, 2015
1 parent dce351f commit 8bafb65
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tools/build/dailyBuildMSVC.py
Expand Up @@ -162,7 +162,13 @@
setup = os.path.join(os.path.dirname(__file__), '..', 'game', 'setup.py')
subprocess.call(['python', setup], stdout=log, stderr=subprocess.STDOUT)
except Exception as e:
print >> log, "Warning: Could not create nightly sumogame.zip! (%s)" % e
print >> log, "Warning: Could not create nightly sumo-game.zip! (%s)" % e
if platform == "x64" and options.sumoExe == "meso":
try:
setup = os.path.join(os.path.dirname(__file__), '..', 'game', 'setup.py')
subprocess.call(['python', setup, 'internal'], stdout=log, stderr=subprocess.STDOUT)
except Exception as e:
print >> log, "Warning: Could not create nightly sumo-game-internal.zip! (%s)" % e
log.close()
subprocess.call(compiler+" /rebuild Debug|%s %s\\%s /out %s" % (platform, options.rootDir, options.project, makeAllLog))
if options.addConf:
Expand Down

0 comments on commit 8bafb65

Please sign in to comment.