Skip to content

Commit

Permalink
rust: release x86-64-v{2,3,4} artifacts
Browse files Browse the repository at this point in the history
We recently started producing these. Let's release them.
  • Loading branch information
indygreg committed Feb 20, 2022
1 parent bac983e commit 1ffead9
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/github.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,13 @@ static SUFFIXES_BY_TRIPLE: Lazy<BTreeMap<&'static str, Vec<&'static str>>> = Laz
h.insert("i686-unknown-linux-gnu", linux_suffixes_pgo.clone());

h.insert("x86_64-unknown-linux-gnu", linux_suffixes_pgo.clone());
h.insert("x86_64_v2-unknown-linux-gnu", linux_suffixes_pgo.clone());
h.insert("x86_64_v3-unknown-linux-gnu", linux_suffixes_pgo.clone());
h.insert("x86_64_v4-unknown-linux-gnu", linux_suffixes_nopgo.clone());
h.insert("x86_64-unknown-linux-musl", linux_suffixes_nopgo.clone());
h.insert("x86_64_v2-unknown-linux-musl", linux_suffixes_nopgo.clone());
h.insert("x86_64_v3-unknown-linux-musl", linux_suffixes_nopgo.clone());
h.insert("x86_64_v4-unknown-linux-musl", linux_suffixes_nopgo.clone());

h
});
Expand Down

0 comments on commit 1ffead9

Please sign in to comment.