Changeset 80457
- Timestamp:
- 07/13/11 07:18:39 (4 years ago)
- File:
-
- 1 edited
-
contrib/buildbot/master.cfg (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
contrib/buildbot/master.cfg
r80285 r80457 21 21 22 22 production = False 23 privkey = '' 23 24 if os.path.exists(_path('config.json')): 24 25 with open(_path('config.json')) as f: 25 production = json.load(f)['production'] 26 configdata = json.load(f) 27 production = configdata['production'] 28 privkey = configdata['privkey'] 26 29 27 30 ####### BUILDSLAVES … … 150 153 prefix='/opt/local' 151 154 src_prefix='/opt/mports' 152 # FIXME 153 dlhost='mparchives.local' 154 dlpath='/archives' 155 dlhost='' 156 dlpath='/www/hosts/packages.macports.org' 155 157 else: 156 158 prefix='%(workdir)s/opt/local' … … 174 176 env={'PREFIX': WithProperties(prefix), 175 177 'SRC_PREFIX': WithProperties(src_prefix)})) 178 176 179 # sign generated binaries and sync to download server (if distributable) 177 ports_factory.addStep( ShellCommand(command=["./deploy_archives.sh"],180 ports_factory.addStep(MasterShellCommand(command=["mpab/deploy_archives.sh"], 178 181 name="deploy archives", 179 182 description="deploy archives", 180 183 env={'PREFIX': WithProperties(prefix), 184 'PRIVKEY': privkey, 181 185 'DLHOST': dlhost, 182 186 'DLPATH': dlpath}))
Note: See TracChangeset
for help on using the changeset viewer.

