author | Andreea Pavel <apavel@mozilla.com> |
Thu, 15 Nov 2018 03:30:47 +0200 | |
changeset 446459 | 2a9517f92a0d29bd8280e7f6fd897f19c4cf68c3 |
parent 446458 | a438eff7d106f25a951c690c22f30b37d40d54a6 |
child 446460 | 1b87eb56e4623d44febf72846134d4c07d4063bd |
push id | 35041 |
push user | aiakab@mozilla.com |
push date | Thu, 15 Nov 2018 09:52:43 +0000 |
treeherder | mozilla-central@48720735b142 [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 1503756 |
milestone | 65.0a1 |
backs out | daffe63f1a1f313446c7f4c29e24de04f4ed1062 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
taskcluster/docker/desktop1604-test/Dockerfile | file | annotate | diff | comparison | revisions | |
testing/mochitest/runtests.py | file | annotate | diff | comparison | revisions |
--- a/taskcluster/docker/desktop1604-test/Dockerfile +++ b/taskcluster/docker/desktop1604-test/Dockerfile @@ -1,11 +1,12 @@ FROM ubuntu:16.04 MAINTAINER Joel Maher <joel.maher@gmail.com> + RUN mkdir /builds RUN useradd -d /builds/worker -s /bin/bash -m worker WORKDIR /builds/worker # We need to declare all potentially cache volumes as caches. Also, # making high I/O paths volumes increase I/O throughput because of # AUFS slowness. VOLUME /builds/worker/.cache
--- a/testing/mochitest/runtests.py +++ b/testing/mochitest/runtests.py @@ -772,17 +772,17 @@ def findTestMediaDevices(log): subprocess.check_call([pactl, 'load-module', 'module-null-sink']) if not null_sink_loaded(): log.error('Couldn\'t load module-null-sink') return None # Hardcode the name since it's always the same. - info['audio'] = 'Monitor of Dummy Output' + info['audio'] = 'Monitor of Null Output' return info def create_zip(path): """ Takes a `path` on disk and creates a zipfile with its contents. Returns a path to the location of the temporary zip file. """