Skip to content

Commit

Permalink
ci: update azcopy target and version (#673)
Browse files Browse the repository at this point in the history
Bring release/2411 to the latest azcopy version. Cherry picked from #663
and #667
  • Loading branch information
mattkur authored Jan 15, 2025
1 parent c31f401 commit 924eb2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions flowey/flowey_lib_common/src/download_azcopy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl FlowNode for Node {
};
match rt.platform().kind() {
FlowPlatformKind::Windows => {
xshell::cmd!(sh, "curl --fail -L https://azcopyvnext.azureedge.net/releases/release-{version_with_date}/azcopy_windows_{arch}_{version_without_date}.zip -o azcopy.zip").run()?;
xshell::cmd!(sh, "curl --fail -L https://azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-{version_with_date}/azcopy_windows_{arch}_{version_without_date}.zip -o azcopy.zip").run()?;

let bsdtar = crate::_util::bsdtar_name(rt);
xshell::cmd!(sh, "{bsdtar} -xf azcopy.zip --strip-components=1").run()?;
Expand All @@ -118,7 +118,7 @@ impl FlowNode for Node {
FlowPlatform::MacOs => "darwin",
platform => anyhow::bail!("unhandled platform {platform}"),
};
xshell::cmd!(sh, "curl --fail -L https://azcopyvnext.azureedge.net/releases/release-{version_with_date}/azcopy_{os}_{arch}_{version_without_date}.tar.gz -o azcopy.tar.gz").run()?;
xshell::cmd!(sh, "curl --fail -L https://azcopyvnext-awgzd8g7aagqhzhe.b02.azurefd.net/releases/release-{version_with_date}/azcopy_{os}_{arch}_{version_without_date}.tar.gz -o azcopy.tar.gz").run()?;
xshell::cmd!(sh, "tar -xf azcopy.tar.gz --strip-components=1").run()?;
}
};
Expand Down
2 changes: 1 addition & 1 deletion flowey/flowey_lib_hvlite/src/_jobs/cfg_versions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use flowey::node::prelude::*;
//
// This would require nodes that currently accept a `Version(String)` to accept
// a `Version(ReadVar<String>)`, but that shouldn't be a serious blocker.
pub const AZCOPY: &str = "10.27.0-20241030";
pub const AZCOPY: &str = "10.27.1-20241113";
pub const AZURE_CLI: &str = "2.56.0";
pub const FUZZ: &str = "0.12.0";
pub const GH_CLI: &str = "2.52.0";
Expand Down

0 comments on commit 924eb2d

Please sign in to comment.