Skip to content

Commit ebab105

Browse files
authored
chore(releases): update repro-check script path to ci/scripts (#1744)
1 parent 346805c commit ebab105

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

release-controller/release_index_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def _verify_release_instructions(
2929
3030
```
3131
# From https://github.com/dfinity/ic#verifying-releases
32-
curl -fsSL https://raw.githubusercontent.com/dfinity/ic/{version}/ci/tools/repro-check | python3 - -c {version} --{os_kind.lower()}
32+
curl -fsSL https://raw.githubusercontent.com/dfinity/ic/{version}/ci/scripts/repro-check | python3 - -c {version} --{os_kind.lower()}
3333
```
3434
3535
The two SHA256 sums printed above from a) the downloaded CDN image and b) the locally built image, must be identical, and must match the SHA256 from the payload of the NNS proposal.

release-controller/tests/test_release_index_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ def test_remove_excluded_changes(dre_repo: GitRepo) -> None:
106106
107107
```
108108
# From https://github.com/dfinity/ic#verifying-releases
109-
curl -fsSL https://raw.githubusercontent.com/dfinity/ic/35bfcadd0f2a474057e42393917b8b3ac269627a/ci/tools/repro-check | python3 - -c 35bfcadd0f2a474057e42393917b8b3ac269627a --guestos
109+
curl -fsSL https://raw.githubusercontent.com/dfinity/ic/35bfcadd0f2a474057e42393917b8b3ac269627a/ci/scripts/repro-check | python3 - -c 35bfcadd0f2a474057e42393917b8b3ac269627a --guestos
110110
```
111111
112112
The two SHA256 sums printed above from a) the downloaded CDN image and b) the locally built image, must be identical, and must match the SHA256 from the payload of the NNS proposal.

rs/cli/src/runner.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@ To build and verify the IC-OS {artifact_name} disk image, after installing curl
12531253
12541254
```
12551255
# From https://github.com/dfinity/ic#verifying-releases
1256-
curl -fsSL https://raw.githubusercontent.com/dfinity/ic/{version}/ci/tools/repro-check | python3 - -c {version} {artifact_str}
1256+
curl -fsSL https://raw.githubusercontent.com/dfinity/ic/{version}/ci/scripts/repro-check | python3 - -c {version} {artifact_str}
12571257
```
12581258
12591259
The two SHA256 sums printed above from a) the downloaded CDN image and b) the locally built image,

0 commit comments

Comments
 (0)