Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tasks/kernel_matrix_testing/setup/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@ def check(self, ctx: Context, fix: bool) -> RequirementState:

try:
# https://github.com/golang/go/issues/63758: downloading dependencies stuck when git tag signature [...]
ctx.run("GIT_TERMINAL_PROMPT=0 go mod download", timeout=timedelta(minutes=5).total_seconds())
ctx.run(
"GIT_TERMINAL_PROMPT=0 go mod download -x && false", timeout=timedelta(minutes=5).total_seconds()
)
ctx.run("PULUMI_CONFIG_PASSPHRASE=dummy pulumi --non-interactive plugin install")
except Exception as e:
return RequirementState(Status.FAIL, f"pulumi plugins installation failed: {e}")
Expand Down
Loading