brizental pushed to branch main at The Tor Project / Applications / tor-browser-bundle-testsuite
Commits:
-
300fc8db
by Beatriz Rizental at 2026-05-12T13:07:51-03:00
2 changed files:
Changes:
| ... | ... | @@ -42,6 +42,7 @@ def extract_tar(tar_path: Path, dest_dir: Path) -> None: |
| 42 | 42 | |
| 43 | 43 | def check_sha256sums_url(sha256sums_url: str) -> None:
|
| 44 | 44 | if not sha256sums_url:
|
| 45 | + print("No sha256sums URL provided. Skipping check.")
|
|
| 45 | 46 | return
|
| 46 | 47 | |
| 47 | 48 | for attempt in range(SPECULATIVE_DOWNLOAD_RETRY_ATTEMPTS):
|
| ... | ... | @@ -100,6 +100,7 @@ def build_inputs(step_name: str, publish_url: str, publish_dir: str) -> dict[str |
| 100 | 100 | input_prefix = f"{'debian' if platform == 'linux' else platform}_{architecture}"
|
| 101 | 101 | inputs = {
|
| 102 | 102 | "mozharness_url": f"{artifacts_url}/mozharness.zip",
|
| 103 | + f"{input_prefix}_sha256sums_url": f"{publish_url}/{publish_dir}/sha256sums-unsigned-build.txt",
|
|
| 103 | 104 | f"{input_prefix}_installer_url": f"{publish_url}/{publish_dir}/{installer}",
|
| 104 | 105 | f"{input_prefix}_artifacts_url": artifacts_url,
|
| 105 | 106 | }
|