Skip to content

Commit 8fff04c

Browse files
committed
DO NOT LAND: debug
1 parent e3203f9 commit 8fff04c

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.taskcluster.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,10 @@ tasks:
241241
taskclusterProxy: true
242242
chainOfTrust: true
243243

244-
image: mozillareleases/taskgraph:decision-latest
244+
image:
245+
type: indexed-image
246+
namespace: taskgraph.v2.taskgraph-pr.925.latest.docker-image.run-task
247+
path: public/image.tar.zst
245248

246249
maxRunTime: 1800
247250

src/taskgraph/run-task/run-task

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -736,6 +736,9 @@ def git_checkout(
736736
)
737737

738738
for ref in extra_refs or []:
739+
print_line(
740+
b"setup", b"ref: %s\n" % ref.encode("utf-8")
741+
)
739742
git_fetch(destination_path, f"{ref}:{ref}", remote=head_repo, env=env)
740743

741744
args = [
@@ -939,6 +942,10 @@ def collect_vcs_options(args, project, name):
939942
if extra_refs := os.environ.get(f"{env_prefix}_EXTRA_REFS"):
940943
extra_refs = json.loads(extra_refs)
941944

945+
print_line(
946+
b"setup", b"Extra refs: %s\n" % os.environ.get(f"{env_prefix}_EXTRA_REFS", "None").encode("utf-8")
947+
)
948+
942949
store_path = os.environ.get("HG_STORE_PATH")
943950

944951
# Expand ~ in some paths.

0 commit comments

Comments
 (0)