mirror of
https://github.com/IEEE-SB-Passau/pelican-deployment-system.git
synced 2017-09-06 16:35:38 +02:00
15 lines
340 B
Python
15 lines
340 B
Python
|
|
#! /usr/bin/env python3
|
||
|
|
|
||
|
|
from pelican_deploy import DeploymentRunner
|
||
|
|
import deploy_config
|
||
|
|
import logging
|
||
|
|
|
||
|
|
logging.basicConfig(level=logging.DEBUG)
|
||
|
|
|
||
|
|
runners = {name: DeploymentRunner(name, conf)
|
||
|
|
for name, conf in deploy_config.RUNNERS.items()}
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
for r in runners.values():
|
||
|
|
r.build_blocking()
|