mirror of https://github.com/zulip/zulip.git
zulip_tools.py: Add a make_deploy_path function and make it invokable from the commandline
(imported from commit 94578d117864fba76f9353784734c712c89c4bf2)
This commit is contained in:
parent
baecc950a5
commit
031dfbcc46
|
@ -6,7 +6,7 @@ import datetime
|
||||||
import tempfile
|
import tempfile
|
||||||
|
|
||||||
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
||||||
from zulip_tools import DEPLOYMENTS_DIR, TIMESTAMP_FORMAT, FAIL, ENDC
|
from zulip_tools import DEPLOYMENTS_DIR, FAIL, ENDC, make_deploy_path
|
||||||
|
|
||||||
if len(sys.argv) != 2:
|
if len(sys.argv) != 2:
|
||||||
print FAIL + "Usage: %s <tarball>" % (sys.argv[0],) + ENDC
|
print FAIL + "Usage: %s <tarball>" % (sys.argv[0],) + ENDC
|
||||||
|
@ -14,8 +14,7 @@ if len(sys.argv) != 2:
|
||||||
|
|
||||||
tarball_path = sys.argv[1]
|
tarball_path = sys.argv[1]
|
||||||
|
|
||||||
timestamp = datetime.datetime.now().strftime(TIMESTAMP_FORMAT)
|
deploy_path = make_deploy_path()
|
||||||
deploy_path = os.path.join(DEPLOYMENTS_DIR, timestamp)
|
|
||||||
|
|
||||||
extract_path = tempfile.mkdtemp()
|
extract_path = tempfile.mkdtemp()
|
||||||
subprocess.check_call(["tar", "-xf", tarball_path, "-C", extract_path])
|
subprocess.check_call(["tar", "-xf", tarball_path, "-C", extract_path])
|
||||||
|
|
|
@ -8,7 +8,7 @@ import shutil
|
||||||
import time
|
import time
|
||||||
|
|
||||||
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
sys.path.append(os.path.join(os.path.dirname(__file__), '..'))
|
||||||
from zulip_tools import DEPLOYMENTS_DIR, LOCK_DIR, TIMESTAMP_FORMAT, FAIL, WARNING, ENDC
|
from zulip_tools import DEPLOYMENTS_DIR, LOCK_DIR, FAIL, WARNING, ENDC, make_deploy_path
|
||||||
|
|
||||||
logging.basicConfig(format="%(asctime)s update-deployment: %(message)s",
|
logging.basicConfig(format="%(asctime)s update-deployment: %(message)s",
|
||||||
level=logging.INFO)
|
level=logging.INFO)
|
||||||
|
@ -40,8 +40,7 @@ if not got_lock:
|
||||||
+ "manually when the current deployment finishes." + ENDC
|
+ "manually when the current deployment finishes." + ENDC
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
timestamp = datetime.datetime.now().strftime(TIMESTAMP_FORMAT)
|
deploy_path = make_deploy_path()
|
||||||
deploy_path = os.path.join(DEPLOYMENTS_DIR, timestamp)
|
|
||||||
|
|
||||||
logging.info("Cloning the repository")
|
logging.info("Cloning the repository")
|
||||||
subprocess.check_call(["git", "clone", "-q", "-b", refname,
|
subprocess.check_call(["git", "clone", "-q", "-b", refname,
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
import subprocess
|
#!/usr/bin/python
|
||||||
import os
|
import os
|
||||||
|
import sys
|
||||||
|
import datetime
|
||||||
|
|
||||||
DEPLOYMENTS_DIR = "/home/zulip/deployments"
|
DEPLOYMENTS_DIR = "/home/zulip/deployments"
|
||||||
LOCK_DIR = os.path.join(DEPLOYMENTS_DIR, "lock")
|
LOCK_DIR = os.path.join(DEPLOYMENTS_DIR, "lock")
|
||||||
|
@ -11,3 +13,12 @@ OKGREEN = '\033[92m'
|
||||||
WARNING = '\033[93m'
|
WARNING = '\033[93m'
|
||||||
FAIL = '\033[91m'
|
FAIL = '\033[91m'
|
||||||
ENDC = '\033[0m'
|
ENDC = '\033[0m'
|
||||||
|
|
||||||
|
def make_deploy_path():
|
||||||
|
timestamp = datetime.datetime.now().strftime(TIMESTAMP_FORMAT)
|
||||||
|
return os.path.join(DEPLOYMENTS_DIR, timestamp)
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
cmd = sys.argv[1]
|
||||||
|
if cmd == 'make_deploy_path':
|
||||||
|
print make_deploy_path()
|
||||||
|
|
Loading…
Reference in New Issue