Skip to content

Commit

Permalink
linux aarch64 v0.8.18 release
Browse files Browse the repository at this point in the history
  • Loading branch information
roynalnaruto committed Feb 2, 2023
1 parent b1e56b7 commit 6a30fcf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion list/linux-aarch64.json
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,10 @@
{
"version": "0.8.17",
"sha256": "e905b3d7f785f660f3c573c1641f42d11be0b4daae79c37e23b72fa2df808098"
},
{
"version": "0.8.18",
"sha256": "d0bb39a5fbcac77b315ea0d9cf48c6882de5b6bcb716be2197355722f24f2ee8"
}
],
"releases": {
Expand Down Expand Up @@ -246,6 +250,7 @@
"0.8.14": "solc-v0.8.14",
"0.8.15": "solc-v0.8.15",
"0.8.16": "solc-v0.8.16",
"0.8.17": "solc-v0.8.17"
"0.8.17": "solc-v0.8.17",
"0.8.18": "solc-v0.8.18"
}
}
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ mod tests {
assert_eq!(
artifact_url(Platform::LinuxAarch64, &version, artifact).unwrap(),
Url::parse(&format!(
"https://github.com/nikitastupin/solc/raw/bd9079b31dd4cb06a98cd3c76b3c3d3ab956de5e/linux/aarch64/{artifact}"
"https://github.com/nikitastupin/solc/raw/01a11efffb8111db0637d4b47a8360bb66979d82/linux/aarch64/{artifact}"
))
.unwrap(),
)
Expand Down
6 changes: 3 additions & 3 deletions src/releases.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ static OLD_SOLC_RELEASES: Lazy<Releases> = Lazy::new(|| {
});

static LINUX_AARCH64_URL_PREFIX: &str =
"https://github.com/nikitastupin/solc/raw/bd9079b31dd4cb06a98cd3c76b3c3d3ab956de5e/linux/aarch64";
"https://github.com/nikitastupin/solc/raw/01a11efffb8111db0637d4b47a8360bb66979d82/linux/aarch64";

static LINUX_AARCH64_RELEASES: Lazy<Releases> = Lazy::new(|| {
serde_json::from_str(include_str!("../list/linux-aarch64.json"))
Expand Down Expand Up @@ -276,8 +276,8 @@ mod tests {

#[test]
fn test_linux_aarch64() {
assert_eq!(LINUX_AARCH64_RELEASES.releases.len(), 49);
assert_eq!(LINUX_AARCH64_RELEASES.builds.len(), 49);
assert_eq!(LINUX_AARCH64_RELEASES.releases.len(), 50);
assert_eq!(LINUX_AARCH64_RELEASES.builds.len(), 50);
}

#[tokio::test]
Expand Down

0 comments on commit 6a30fcf

Please sign in to comment.