author | Tom Prince <mozilla@hocat.ca> |
Tue, 02 Oct 2018 21:38:23 +0000 | |
changeset 445093 | 072bf0d7270d25d4892967402c0a1c5eebe0bf9b |
parent 445092 | f9108997903c74814e3f3b4d8d9548bcbf9e7149 |
child 445094 | 49414dd9aab5a6779ee4d33212f857c3cf9ff2d1 |
push id | 109680 |
push user | mh@glandium.org |
push date | Thu, 08 Nov 2018 10:50:15 +0000 |
treeherder | mozilla-inbound@ba4ed5fd320a [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | dustin |
bugs | 1505652 |
milestone | 65.0a1 |
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/debian-base/setup_packages.sh | file | annotate | diff | comparison | revisions | |
taskcluster/taskgraph/transforms/job/debian_package.py | file | annotate | diff | comparison | revisions |
--- a/taskcluster/docker/debian-base/setup_packages.sh +++ b/taskcluster/docker/debian-base/setup_packages.sh @@ -1,5 +1,5 @@ #!/bin/sh for task in "$@"; do - echo "deb [trusted=yes] https://queue.taskcluster.net/v1/task/$task/runs/0/artifacts/public/build/ debian/" > "/etc/apt/sources.list.d/99$task.list" + echo "deb [trusted=yes] https://queue.taskcluster.net/v1/task/$task/artifacts/public/build/ debian/" > "/etc/apt/sources.list.d/99$task.list" done
--- a/taskcluster/taskgraph/transforms/job/debian_package.py +++ b/taskcluster/taskgraph/transforms/job/debian_package.py @@ -165,17 +165,17 @@ def docker_worker_debian_package(config, '/{snapshot}/ {dist}-backports main" >> /etc/apt/sources.list && ' 'echo "deb http://snapshot.debian.org/archive/debian-security' '/{snapshot}/ {dist}/updates main" >> /etc/apt/sources.list && ' 'apt-get update -o Acquire::Check-Valid-Until=false -q && ' # Add sources for packages coming from other package tasks. 'apt-get install -yyq apt-transport-https ca-certificates && ' 'for task in $PACKAGES; do ' ' echo "deb [trusted=yes] https://queue.taskcluster.net/v1/task' - '/$task/runs/0/artifacts/public/build/ debian/" ' + '/$task/artifacts/public/build/ debian/" ' '>> /etc/apt/sources.list; ' 'done && ' # Install the base utilities required to build debian packages. 'apt-get update -o Acquire::Check-Valid-Until=false -q && ' 'apt-get install -yyq {base_deps} && ' 'cd /tmp && ' # Get, validate and extract the package source. 'dget -d -u {src_url} && '