From 51e15c1a2ef54161cc22ad76ab9c3f20233f2eab Mon Sep 17 00:00:00 2001 From: Andrew Halberstadt Date: Thu, 5 Sep 2024 11:58:00 -0400 Subject: [PATCH] ci: update reps to latest taskgraph 11.0.0 --- .taskcluster.yml | 2 +- taskcluster/docker/python/Dockerfile | 9 ++++----- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.taskcluster.yml b/.taskcluster.yml index fbddfc7..3e87300 100644 --- a/.taskcluster.yml +++ b/.taskcluster.yml @@ -211,7 +211,7 @@ tasks: features: taskclusterProxy: true - image: mozillareleases/taskgraph:decision-v7.3.1@sha256:1d1364c01c13002a13863f0ef27dd7331ad1c7fe92bbb8b0b4019dc5a821461c + image: mozillareleases/taskgraph:decision-v11.0.0@sha256:8c57e30214c85625856479812e63212dc2873b1ffcd97467a7c93508cbb3075a maxRunTime: 1800 command: diff --git a/taskcluster/docker/python/Dockerfile b/taskcluster/docker/python/Dockerfile index b499d39..7733f0b 100644 --- a/taskcluster/docker/python/Dockerfile +++ b/taskcluster/docker/python/Dockerfile @@ -5,9 +5,11 @@ FROM python:3.9 LABEL maintainer="Mozilla Release Engineering " +VOLUME /builds/worker/checkouts +VOLUME /builds/worker/.cache + # Add worker user -RUN mkdir /builds && \ - useradd -d /builds/worker -s /bin/bash -m worker && \ +RUN useradd -d /builds/worker -s /bin/bash -m worker && \ mkdir -p /builds/worker/artifacts # %include-run-task @@ -19,9 +21,6 @@ ENV SHELL=/bin/bash \ HOME=/builds/worker \ PATH=/builds/worker/.local/bin:$PATH -VOLUME /builds/worker/checkouts -VOLUME /builds/worker/.cache - # uv COPY --from=ghcr.io/astral-sh/uv:0.3.5 /uv /bin/uv # %ARG PYTHON_VERSIONS