Commit 02740239 authored by Sebastian Hengst's avatar Sebastian Hengst
Browse files

Backed out changeset a43387ee65d7 (bug 1342392) for failing flake8 and py-compat jobs. r=backout

--HG--
rename : taskcluster/docker/partial-update-generator/Dockerfile => taskcluster/docker/funsize-update-generator/Dockerfile
rename : taskcluster/docker/partial-update-generator/Makefile => taskcluster/docker/funsize-update-generator/Makefile
rename : taskcluster/docker/partial-update-generator/README => taskcluster/docker/funsize-update-generator/README
rename : taskcluster/docker/partial-update-generator/dep.pubkey => taskcluster/docker/funsize-update-generator/dep.pubkey
rename : taskcluster/docker/partial-update-generator/nightly_sha1.pubkey => taskcluster/docker/funsize-update-generator/nightly_sha1.pubkey
rename : taskcluster/docker/partial-update-generator/nightly_sha384.pubkey => taskcluster/docker/funsize-update-generator/nightly_sha384.pubkey
rename : taskcluster/docker/partial-update-generator/recompress.sh => taskcluster/docker/funsize-update-generator/recompress.sh
rename : taskcluster/docker/partial-update-generator/release_sha1.pubkey => taskcluster/docker/funsize-update-generator/release_sha1.pubkey
rename : taskcluster/docker/partial-update-generator/release_sha384.pubkey => taskcluster/docker/funsize-update-generator/release_sha384.pubkey
rename : taskcluster/docker/partial-update-generator/requirements.txt => taskcluster/docker/funsize-update-generator/requirements.txt
rename : taskcluster/docker/partial-update-generator/runme.sh => taskcluster/docker/funsize-update-generator/runme.sh
rename : taskcluster/docker/partial-update-generator/scripts/funsize.py => taskcluster/docker/funsize-update-generator/scripts/funsize.py
rename : taskcluster/docker/partial-update-generator/scripts/mbsdiff_hook.sh => taskcluster/docker/funsize-update-generator/scripts/mbsdiff_hook.sh
rename : taskcluster/docker/partial-update-generator/scripts/recompress.py => taskcluster/docker/funsize-update-generator/scripts/recompress.py
parent 681078e5
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -12,7 +12,6 @@ transforms:

kind-dependencies:
  - repackage-signing
  - partials-signing

only-for-build-platforms:
  - linux-nightly/opt
+0 −2
Original line number Diff line number Diff line
@@ -26,5 +26,3 @@ jobs:
    symbol: I(agb)
  index-task:
    symbol: I(idx)
  partial-update-generator:
    symbol: I(pg)
+0 −13
Original line number Diff line number Diff line
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

loader: taskgraph.loader.single_dep:loader

transforms:
  - taskgraph.transforms.name_sanity:transforms
  - taskgraph.transforms.partials_signing:transforms
  - taskgraph.transforms.task:transforms

kind-dependencies:
  - partials

taskcluster/ci/partials/kind.yml

deleted100644 → 0
+0 −23
Original line number Diff line number Diff line
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

loader: taskgraph.loader.single_dep:loader

transforms:
  - taskgraph.transforms.name_sanity:transforms
  - taskgraph.transforms.partials:transforms
  - taskgraph.transforms.task:transforms

kind-dependencies:
  - repackage-signing

only-for-attributes:
  - nightly

only-for-build-platforms:
  - macosx64-nightly/opt
  - win32-nightly/opt
  - win64-nightly/opt
  - linux-nightly/opt
  - linux64-nightly/opt
+0 −3
Original line number Diff line number Diff line
@@ -25,7 +25,6 @@ RUN pip install -r /tmp/requirements.txt
# scripts
RUN mkdir /home/worker/bin
COPY scripts/* /home/worker/bin/

COPY runme.sh /runme.sh
COPY recompress.sh /recompress.sh
RUN chmod 755 /home/worker/bin/* /*.sh
@@ -36,5 +35,3 @@ ENV HOME /home/worker
ENV           SHELL         /bin/bash
ENV           USER          worker
ENV           LOGNAME       worker

CMD ["/runme.sh"]
Loading