def build_worker(builder, sconf, conf, sync, finalize_fun): dirpath = os.path.join(conf.paths.branch_output, builder) if not os.path.exists(dirpath): os.makedirs(dirpath) logger.info('created directories "{1}" for sphinx builder {0}'.format(builder, dirpath)) # a batch of prereq jobs go here. (if they need the modified conf.) build_job_prerequsites(sync, sconf, conf) logger.info('starting sphinx build {0} at {1}'.format(builder, timestamp())) cmd = 'sphinx-build {0} -d {1}/doctrees-{2} {3} {4}' # per-builder-doctreea sphinx_cmd = cmd.format(get_sphinx_args(sconf, conf), os.path.join(conf.paths.projectroot, conf.paths.branch_output), builder, os.path.join(conf.paths.projectroot, conf.paths.branch_source), os.path.join(conf.paths.projectroot, conf.paths.branch_output, builder)) out = command(sphinx_cmd, capture=True, ignore=True) # out = sphinx_native_worker(sphinx_cmd) logger.info('completed sphinx build {0} at {1}'.format(builder, timestamp())) output = '\n'.join([out.err, out.out]) if out.return_code == 0: logger.info('successfully completed {0} sphinx build at {1}!'.format(builder, timestamp())) if finalize_fun is not None: finalize_fun(builder, sconf, conf) logger.info('finalized sphinx {0} build at {1}'.format(builder, timestamp())) return output else: logger.warning('the sphinx build {0} was not successful. not running finalize steps'.format(builder)) output_sphinx_stream(output, conf) return None
def build_worker(builder, sconf, conf, finalize_fun): conf = edition_setup(sconf.edition, conf) dirpath = os.path.join(conf.paths.branch_output, builder) if not os.path.exists(dirpath): os.makedirs(dirpath) print('[{0}]: created {1}/{2}'.format(builder, conf.paths.branch_output, builder)) print('[{0}]: starting {0} build {1}'.format(builder, timestamp())) cmd = 'sphinx-build {0} -d {1}/doctrees-{2} {3} {4}' # per-builder-doctreea sphinx_cmd = cmd.format(get_sphinx_args(sconf, conf), os.path.join(conf.paths.projectroot, conf.paths.branch_output), builder, os.path.join(conf.paths.projectroot, conf.paths.branch_source), os.path.join(conf.paths.projectroot, conf.paths.branch_output, builder)) out = command(sphinx_cmd, capture=True) # out = sphinx_native_worker(sphinx_cmd) print('[build]: completed {0} build at {1}'.format(builder, timestamp())) output = '\n'.join([out.err, out.out]) if out.return_code == 0: print('[sphinx]: successfully completed {0} build at {1}!'.format(builder, timestamp())) if finalize_fun is not None: finalize_fun(builder, sconf, conf) print('[sphinx]: finalized {0} build at {1}'.format(builder, timestamp())) return output else: print('[sphinx]: the {0} build was not successful. not running finalize steps'.format(builder)) output_sphinx_stream(output, conf) return None
def build_worker(builder, sconf, conf, sync, finalize_fun): dirpath = os.path.join(conf.paths.branch_output, builder) if not os.path.exists(dirpath): os.makedirs(dirpath) logger.info('created directories "{1}" for sphinx builder {0}'.format( builder, dirpath)) # a batch of prereq jobs go here. (if they need the modified conf.) build_job_prerequsites(sync, sconf, conf) logger.info('starting sphinx build {0} at {1}'.format( builder, timestamp())) cmd = 'sphinx-build {0} -d {1}/doctrees-{2} {3} {4}' # per-builder-doctreea sphinx_cmd = cmd.format( get_sphinx_args(sconf, conf), os.path.join(conf.paths.projectroot, conf.paths.branch_output), builder, os.path.join(conf.paths.projectroot, conf.paths.branch_source), os.path.join(conf.paths.projectroot, conf.paths.branch_output, builder)) out = command(sphinx_cmd, capture=True, ignore=True) # out = sphinx_native_worker(sphinx_cmd) logger.info('completed sphinx build {0} at {1}'.format( builder, timestamp())) output = '\n'.join([out.err, out.out]) if out.return_code == 0: logger.info('successfully completed {0} sphinx build at {1}!'.format( builder, timestamp())) if finalize_fun is not None: finalize_fun(builder, sconf, conf) logger.info('finalized sphinx {0} build at {1}'.format( builder, timestamp())) return output else: logger.warning( 'the sphinx build {0} was not successful. not running finalize steps' .format(builder)) output_sphinx_stream(output, conf) return None