aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/bootstrap.py
diff options
context:
space:
mode:
authorAneesh Agrawal <aneeshusa@gmail.com>2017-01-11 16:43:54 -0500
committerAneesh Agrawal <aneeshusa@gmail.com>2017-01-17 11:01:09 -0500
commitb4f508630510c1fc96f6f3245bfb29dd0e16dcf4 (patch)
treedf1bce31c7bec9c07bf656cf1d1dc7ed9ec805b7 /python/servo/bootstrap.py
parent60a1503b2997b05e3f36f4ce92d688df44fdeae7 (diff)
downloadservo-b4f508630510c1fc96f6f3245bfb29dd0e16dcf4.tar.gz
servo-b4f508630510c1fc96f6f3245bfb29dd0e16dcf4.zip
Add a Salt bootstrapper
The Salt bootstrapper invokes Salt during `./mach bootstrap` to install Servo's build dependencies. It uses salt-call pinned to the same version of Salt as used in saltfs. Currently, the implementation uses gitfs and reads directly from the master branch of the saltfs repo; in the future this should be changed when the relevant Salt states are moved in-tree as part of Dockerization for TaskCluster. We have not Salted our Windows machines, so the existing Windows bootstrappers are retained. Currently this is only tested on Ubuntu Trusty. Salt uses various system python libraries, including `python-apt` on Debian-based OSes to interact with apt. `python-apt` does not seem to be installable via a requirements.txt file, and the versions available on PyPI are far behind the versions installed on actual Ubuntu machines. Additionally, adding `python-apt` as an unconditional python dependency would add bloat for users of other OSes, and lead to more churn as additional OSes are supported. However, as `python-apt` is already installed via apt on these machines, we can allow Salt to instead use the module by using `--system-site-packages` for the python virtualenv. We also add the `-I` flag to `pip install` to ensure we have a local, untouched copy of any other python packages used. However, because this prints system-level Python packages in scope, it slightly breaks isolation, so it is important to always pin all dependencies in the requirements files.
Diffstat (limited to 'python/servo/bootstrap.py')
-rw-r--r--python/servo/bootstrap.py121
1 files changed, 120 insertions, 1 deletions
diff --git a/python/servo/bootstrap.py b/python/servo/bootstrap.py
index ec8a0a6c449..54862a885bd 100644
--- a/python/servo/bootstrap.py
+++ b/python/servo/bootstrap.py
@@ -5,14 +5,129 @@
from __future__ import absolute_import, print_function
from distutils.spawn import find_executable
+import json
import os
+import platform
+import shutil
import subprocess
-import sys
import servo.packages as packages
from servo.util import extract, download_file, host_triple
+def salt(context, force=False):
+ # Ensure Salt is installed in the virtualenv
+ # It's not instaled globally because it's a large, non-required dependency,
+ # and the installation fails on Windows
+ print("Checking Salt installation...", end='')
+ reqs_path = os.path.join(context.topdir, 'python', 'requirements-salt.txt')
+ process = subprocess.Popen(
+ ["pip", "install", "-q", "-I", "-r", reqs_path],
+ stdout=subprocess.PIPE,
+ stderr=subprocess.PIPE
+ )
+ process.wait()
+ if process.returncode:
+ out, err = process.communicate()
+ print('failed to install Salt via pip:')
+ print('Output: {}\nError: {}'.format(out, err))
+ return 1
+ print("done")
+
+ salt_root = os.path.join(context.sharedir, 'salt')
+ config_dir = os.path.join(salt_root, 'etc', 'salt')
+ pillar_dir = os.path.join(config_dir, 'pillars')
+
+ # In order to allow `mach bootstrap` to work from any CWD,
+ # the `root_dir` must be an absolute path.
+ # We place it under `context.sharedir` because
+ # Salt caches data (e.g. gitfs files) in its `var` subdirectory.
+ # Hence, dynamically generate the config with an appropriate `root_dir`
+ # and serialize it as JSON (which is valid YAML).
+ config = {
+ 'fileserver_backend': ['git'],
+ 'gitfs_env_whitelist': 'base',
+ 'gitfs_provider': 'gitpython',
+ 'gitfs_remotes': [
+ 'https://github.com/servo/saltfs.git',
+ ],
+ 'hash_type': 'sha384',
+ 'master': 'localhost',
+ 'root_dir': salt_root,
+ 'state_output': 'changes',
+ 'state_tabular': True,
+ }
+
+ if not os.path.exists(config_dir):
+ os.makedirs(config_dir, mode=0o700)
+ with open(os.path.join(config_dir, 'minion'), 'w') as config_file:
+ config_file.write(json.dumps(config) + '\n')
+
+ # Similarly, the pillar data is created dynamically
+ # and temporarily serialized to disk.
+ # This dynamism is not yet used, but will be in the future
+ # to enable Android bootstrapping by using
+ # context.sharedir as a location for Android packages.
+ pillar = {
+ 'top.sls': {
+ 'base': {
+ '*': ['bootstrap'],
+ },
+ },
+ 'bootstrap.sls': {
+ 'fully_managed': False,
+ },
+ }
+ if os.path.exists(pillar_dir):
+ shutil.rmtree(pillar_dir)
+ os.makedirs(pillar_dir, mode=0o700)
+ for filename in pillar:
+ with open(os.path.join(pillar_dir, filename), 'w') as pillar_file:
+ pillar_file.write(json.dumps(pillar[filename]) + '\n')
+
+ cmd = [
+ 'sudo',
+ # sudo escapes from the venv, need to use full path
+ find_executable('salt-call'),
+ '--local',
+ '--config-dir={}'.format(config_dir),
+ '--pillar-root={}'.format(pillar_dir),
+ 'state.apply',
+ 'servo-build-dependencies',
+ ]
+
+ if not force:
+ print('Running bootstrap in dry-run mode to show changes')
+ # Because `test=True` mode runs each state individually without
+ # considering how required/previous states affect the system,
+ # it will often report states with requisites as failing due
+ # to the requisites not actually being run,
+ # even though these are spurious and will succeed during
+ # the actual highstate.
+ # Hence `--retcode-passthrough` is not helpful in dry-run mode,
+ # so only detect failures of the actual salt-call binary itself.
+ retcode = subprocess.call(cmd + ['test=True'])
+ if retcode != 0:
+ print('Something went wrong while bootstrapping')
+ return retcode
+
+ proceed = raw_input(
+ 'Proposed changes are above, proceed with bootstrap? [y/N]: '
+ )
+ if proceed.lower() not in ['y', 'yes']:
+ return 0
+
+ print('')
+
+ print('Running Salt bootstrap')
+ retcode = subprocess.call(cmd + ['--retcode-passthrough'])
+ if retcode == 0:
+ print('Salt bootstrapping complete')
+ else:
+ print('Salt bootstrapping encountered errors')
+ return retcode
+
+
def windows_gnu(context, force=False):
'''Bootstrapper for msys2 based environments for building in Windows.'''
@@ -102,6 +217,10 @@ def bootstrap(context, force=False):
bootstrapper = windows_gnu
elif "windows-msvc" in host_triple():
bootstrapper = windows_msvc
+ elif "linux-gnu" in host_triple():
+ distro, version, _ = platform.linux_distribution()
+ if distro == 'Ubuntu' and version == '14.04':
+ bootstrapper = salt
if bootstrapper is None:
print('Bootstrap support is not yet available for your OS.')