Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
Bug 767117 - jetperf needs config files;r=aki
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Hammel committed Jul 17, 2012
1 parent 49a1fc3 commit 4cda4b7
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 0 deletions.
25 changes: 25 additions & 0 deletions configs/jetperf/prod_config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# This is a template config file for jetperf production

config = {

"datazilla_urls": ['http://10.8.73.32/jetperf/load_test'],

"exes": {
'python': '/tools/buildbot/bin/python',
'virtualenv': ['/tools/buildbot/bin/python', '/tools/misc-python/virtualenv.py'],
},

"find_links": ["http://puppetagain.pub.build.mozilla.org/data/python/packages"],

"default_actions": [
'clobber',
'pull',
'build',
'download-and-extract',
'create-virtualenv',
'install',
'test',
'baseline',
'report-tbpl-status'
],
}
17 changes: 17 additions & 0 deletions configs/jetperf/test_config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import os
from datetime import datetime

config = {

"datazilla_urls": ['file://%s.json' % (os.path.join(os.getcwd(),
datetime.now().strftime("%Y%m%d_%H%M")))],

"default_actions": [
'clobber',
'pull',
'build',
'create-virtualenv',
'test',
'baseline',
],
}
29 changes: 29 additions & 0 deletions configs/jetperf/windows_config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This is a template config file for jetperf production

config = {

"datazilla_urls": ['http://10.8.73.32/jetperf/load_test'],

"virtualenv_path": 'c:/talos-slave/test/build/venv',
"virtualenv_python_dll": 'c:/mozilla-build/python25/python25.dll',

"exes": {
'python': 'c:/mozilla-build/python25/python',
'virtualenv': ['c:/mozilla-build/python25/python', 'c:/mozilla-build/buildbotve/virtualenv.py'],
'hg': 'c:/mozilla-build/hg/hg',
},

"find_links": ["http://puppetagain.pub.build.mozilla.org/data/python/packages"],

"default_actions": [
'clobber',
'pull',
'build',
'download-and-extract',
'create-virtualenv',
'install',
'test',
'baseline',
'report-tbpl-status'
],
}

0 comments on commit 4cda4b7

Please sign in to comment.