Skip to content
Snippets Groups Projects
Commit aed84665 authored by Georges Racinet's avatar Georges Racinet
Browse files

build-launch: reuse existing tarball if valid

This means reading `.hg_archival.txt` in there, but that's
worth the effort.

Remark: Mercurial archives are reproducible enough that Docker
would have used its cache. Still, the archival of the Rails app
was taking a noticeable time.
parent 74e959f9
No related branches found
No related tags found
No related merge requests found
......@@ -4,9 +4,10 @@
import json
import os
import subprocess
import tarfile
HOME = os.environ['HOME']
DOCKER_CONTEXT_DIR = os.path.realpath(os.path.dirname(__file__))
OMNIBUS_DIR = os.path.dirname(DOCKER_CONTEXT_DIR)
SOURCES_DIR = os.path.join(OMNIBUS_DIR, 'repos')
PREFETCH_SOURCES = { # name in heptapod_revisions -> repo slug
......@@ -7,10 +8,11 @@
HOME = os.environ['HOME']
DOCKER_CONTEXT_DIR = os.path.realpath(os.path.dirname(__file__))
OMNIBUS_DIR = os.path.dirname(DOCKER_CONTEXT_DIR)
SOURCES_DIR = os.path.join(OMNIBUS_DIR, 'repos')
PREFETCH_SOURCES = { # name in heptapod_revisions -> repo slug
'workhorse': 'heptapod-workhorse'
'workhorse': 'heptapod-workhorse',
'rails': 'heptapod',
}
......@@ -80,6 +82,16 @@
return out.decode().strip()
def inspect_archive(tarball):
"""Return the contents of archival metadata as a dict."""
with tarfile.open(tarball) as tar:
archival = tar.extractfile('.hg_archival.txt')
res = dict([token.strip() for token in line.decode().split(':', 1)]
for line in archival.readlines())
archival.close()
return res
def prefetch_component_sources(slug, rev_info, shares_dir, simulate=False):
repo_path = os.path.join(SOURCES_DIR, slug)
pull_branch = rev_info.get('pull_branch')
......@@ -99,8 +111,8 @@
cmd.extend(pull_opts)
print("Pull for existing repository: %r" % cmd)
else:
print("Revision %r found in existing repository as %r" % (
target_rev, sha))
print("Revision %r found in existing repository at %r as %r" % (
target_rev, repo_path, sha))
return repo_path, sha
else:
cmd = ['hg']
......@@ -136,9 +148,20 @@
simulate=simulate)
tarball = os.path.join(context_dir, slug + '.tar')
if os.path.exists(tarball):
print("Remove existing tarball: %r" % tarball)
if not simulate:
os.unlink(tarball)
if sha is not None: # can be None without error in simulate mode
archive_md = inspect_archive(tarball)
tar_sha = archive_md['node']
if tar_sha == sha:
print("Reusing existing tarball at %r. "
"Archival metadata: %r" % (
tarball, archive_md))
continue
else:
print("Remove stale tarball at %r "
"with archival metadada: %r " % (
tarball, archive_md))
if not simulate:
os.unlink(tarball)
cmd = ['hg', '-R', src_path, 'archive',
'-t', 'tar',
'-p', '.',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment