From fb8c00012f9b1461eb7222aa8491531c0e403196 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Wed, 18 Aug 2021 03:42:46 +0000 Subject: [PATCH] Bug 1726117 - Remove snapshot configuration for debian-packages tasks. r=taskgraph-reviewers,bhearsum It hasn't been used since bug 1431523. Differential Revision: https://phabricator.services.mozilla.com/D122828 --- taskcluster/ci/packages/debian.yml | 1 - taskcluster/taskgraph/transforms/job/distro_package.py | 4 ---- 2 files changed, 5 deletions(-) diff --git a/taskcluster/ci/packages/debian.yml b/taskcluster/ci/packages/debian.yml index 4c451bd13aad..d86487e60c33 100644 --- a/taskcluster/ci/packages/debian.yml +++ b/taskcluster/ci/packages/debian.yml @@ -6,7 +6,6 @@ job-defaults: run: using: debian-package dist: jessie - snapshot: 20210208T213147Z deb10-cmake: description: "Cmake backport for Debian buster" diff --git a/taskcluster/taskgraph/transforms/job/distro_package.py b/taskcluster/taskgraph/transforms/job/distro_package.py index 0432dfb41c1f..abb83e0b510e 100644 --- a/taskcluster/taskgraph/transforms/job/distro_package.py +++ b/taskcluster/taskgraph/transforms/job/distro_package.py @@ -62,10 +62,6 @@ debian_schema = common_schema.extend( Required("using"): "debian-package", # Debian distribution Required("dist"): text_type, - # Date of the snapshot (from snapshot.debian.org) to use, in the format - # YYYYMMDDTHHMMSSZ. The same date is used for the base docker-image name - # (only the YYYYMMDD part). - Required("snapshot"): text_type, } )