Skip to content

Commit

Permalink
fix(release): Replace the gitlab-ci/ to ci/ references for the IC repo (
Browse files Browse the repository at this point in the history
  • Loading branch information
sasa-tomic authored Sep 13, 2024
1 parent 6f1596b commit e485266
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion release-controller/release_index_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def _verify_release_instructions(version):
```
# From https://github.com/dfinity/ic#verifying-releases
sudo apt-get install -y curl && curl --proto '=https' --tlsv1.2 -sSLO https://raw.githubusercontent.com/dfinity/ic/{version}/gitlab-ci/tools/repro-check.sh && chmod +x repro-check.sh && ./repro-check.sh -c {version}
sudo apt-get install -y curl && curl --proto '=https' --tlsv1.2 -sSLO https://raw.githubusercontent.com/dfinity/ic/{version}/ci/tools/repro-check.sh && chmod +x repro-check.sh && ./repro-check.sh -c {version}
```
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.
Expand Down
2 changes: 1 addition & 1 deletion release-controller/test_release_index_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def test_remove_excluded_changes():
```
# From https://github.com/dfinity/ic#verifying-releases
sudo apt-get install -y curl && curl --proto \'=https\' --tlsv1.2 -sSLO https://raw.githubusercontent.com/dfinity/ic/35bfcadd0f2a474057e42393917b8b3ac269627a/gitlab-ci/tools/repro-check.sh && chmod +x repro-check.sh && ./repro-check.sh -c 35bfcadd0f2a474057e42393917b8b3ac269627a
sudo apt-get install -y curl && curl --proto \'=https\' --tlsv1.2 -sSLO https://raw.githubusercontent.com/dfinity/ic/35bfcadd0f2a474057e42393917b8b3ac269627a/ci/tools/repro-check.sh && chmod +x repro-check.sh && ./repro-check.sh -c 35bfcadd0f2a474057e42393917b8b3ac269627a
```
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.
Expand Down
2 changes: 1 addition & 1 deletion rs/cli/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -887,7 +887,7 @@ pub fn format_regular_version_upgrade_summary(version: &str, release_artifact: &
```
# From https://github.com/dfinity/ic#verifying-releases
sudo apt-get install -y curl && curl --proto '=https' --tlsv1.2 -sSLO https://raw.githubusercontent.com/dfinity/ic/{version}/gitlab-ci/tools/repro-check.sh && chmod +x repro-check.sh && ./repro-check.sh -c {version}
sudo apt-get install -y curl && curl --proto '=https' --tlsv1.2 -sSLO https://raw.githubusercontent.com/dfinity/ic/{version}/ci/tools/repro-check.sh && chmod +x repro-check.sh && ./repro-check.sh -c {version}
```
The two SHA256 sums printed above from a) the downloaded CDN image and b) the locally built image,
Expand Down
2 changes: 1 addition & 1 deletion rs/qualifier/src/ict_util.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub const FARM_BASE_URL: &str = "https://farm.dfinity.systems";
pub async fn ict(ic_git: PathBuf, token: CancellationToken, sender: Sender<Message>, artifacts: PathBuf) -> anyhow::Result<()> {
let ic_config = artifacts.join("ic-config.json");

let command = "gitlab-ci/container/container-run.sh";
let command = "ci/container/container-run.sh";
let args = &[
"ict",
"testnet",
Expand Down
2 changes: 1 addition & 1 deletion scripts/host-os-release-notes.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def strip_ansi_sequences(input_text):

def run_bazel_query(query, ic_repo_path):
p = subprocess.run(
["gitlab-ci/container/container-run.sh"] + query,
["ci/container/container-run.sh"] + query,
cwd=ic_repo_path,
text=True,
stdout=subprocess.PIPE,
Expand Down

0 comments on commit e485266

Please sign in to comment.