author | Gregory Arndt <garndt@mozilla.com> |
Tue, 24 May 2016 08:57:18 -0500 | |
changeset 298977 | 7932129b6e5c819a8bee07f7c21260296a988d56 |
parent 298976 | 0edb406418261a3b078bab4f108a4948a13dd46f |
child 298978 | 6926b3233f9c5b40ea0310eb855f3ee7acfcb35c |
push id | 30286 |
push user | kwierso@gmail.com |
push date | Wed, 25 May 2016 22:33:39 +0000 |
treeherder | mozilla-central@1012461fa7bb [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | jhford |
bugs | 1275276 |
milestone | 49.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
|
testing/docker/image_builder/VERSION | file | annotate | diff | comparison | revisions | |
testing/docker/image_builder/bin/build_image.sh | file | annotate | diff | comparison | revisions |
--- a/testing/docker/image_builder/VERSION +++ b/testing/docker/image_builder/VERSION @@ -1,1 +1,1 @@ -0.1.4 +0.1.5
--- a/testing/docker/image_builder/bin/build_image.sh +++ b/testing/docker/image_builder/bin/build_image.sh @@ -16,17 +16,17 @@ raise_error() { # Ensure that the PROJECT is specified so the image can be indexed test -n "$PROJECT" || raise_error "Project must be provided." test -n "$HASH" || raise_error "Context Hash must be provided." mkdir /artifacts if [ ! -z "$CONTEXT_URL" ]; then mkdir /context - if ! curl -L --retry 5 --connect-timeout 30 "$CONTEXT_URL" | tar -xz --strip-components 1 -C /context; then + if ! curl -L --retry 5 --connect-timeout 30 --fail "$CONTEXT_URL" | tar -xz --strip-components 1 -C /context; then raise_error "Error downloading image context from decision task." fi CONTEXT_PATH=/context else tc-vcs checkout /home/worker/workspace/src $BASE_REPOSITORY $HEAD_REPOSITORY $HEAD_REV $HEAD_REF CONTEXT_PATH=/home/worker/workspace/src/$CONTEXT_PATH fi