From f377d047a20ed8161ea5106580a776a5cd17d9b8 Mon Sep 17 00:00:00 2001 From: Ken VanDine Date: Mon, 30 Mar 2020 10:21:03 +0000 Subject: [PATCH] Bug 1622282 - extract gnome-3-28-1804 platform snap to be used in the cleanup part r=jlorenzo Differential Revision: https://phabricator.services.mozilla.com/D67629 --HG-- extra : moz-landing-system : lando --- taskcluster/docker/firefox-snap/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/taskcluster/docker/firefox-snap/Dockerfile b/taskcluster/docker/firefox-snap/Dockerfile index 4367d05265cb..96f794a55207 100644 --- a/taskcluster/docker/firefox-snap/Dockerfile +++ b/taskcluster/docker/firefox-snap/Dockerfile @@ -42,6 +42,12 @@ RUN curl -L $(curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/sna RUN mkdir -p /snap/core18 RUN unsquashfs -d /snap/core18/current core18.snap +# Grab the gnome-3-28-1804 snap from the stable channel +# and unpack it in the proper place. +RUN curl -L $(curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/gnome-3-28-1804' | jq '.download_url' -r) --output gnome-3-28-1804.snap +RUN mkdir -p /snap/gnome-3-28-1804 +RUN unsquashfs -d /snap/gnome-3-28-1804/current gnome-3-28-1804.snap + # Grab the snapcraft snap from the stable channel and unpack it in the proper # place. RUN curl -L $(curl -H 'X-Ubuntu-Series: 16' 'https://api.snapcraft.io/api/v1/snaps/details/snapcraft?channel=stable' | jq '.download_url' -r) --output snapcraft.snap && \