Skip to content

Commit 7ea8524

Browse files
committed
Drop all the cloudabi targets from the lists
1 parent 1eb36a5 commit 7ea8524

File tree

2 files changed

+3
-11
lines changed

2 files changed

+3
-11
lines changed

config.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ tiers:
8686
- "x86_64-linux-android"
8787
- "x86_64-rumprun-netbsd"
8888
- "x86_64-sun-solaris"
89-
- "x86_64-unknown-cloudabi"
9089
- "x86_64-unknown-freebsd"
9190
- "x86_64-unknown-fuchsia"
9291
- "x86_64-unknown-illumos"
@@ -95,9 +94,6 @@ tiers:
9594
- "x86_64-unknown-netbsd"
9695
- "x86_64-unknown-redox"
9796
Tier25:
98-
- "aarch64-unknown-cloudabi"
99-
- "armv7-unknown-cloudabi-eabihf"
100-
- "i686-unknown-cloudabi"
10197
- "powerpc-unknown-linux-gnuspe"
10298
- "sparc-unknown-linux-gnu"
10399
Tier3:

web/src/opts.rs

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use std::{
77
path::{Path, PathBuf},
88
};
99

10-
/// Support tiers: https://forge.rust-lang.org/platform-support.html.
10+
/// Support tiers: https://doc.rust-lang.org/nightly/rustc/platform-support.html.
1111
#[derive(Debug, Serialize, Deserialize, Hash, PartialEq, Eq, Clone, Copy, PartialOrd, Ord)]
1212
pub enum Tier {
1313
/// Tier 1 platforms.
@@ -157,7 +157,6 @@ tiers:
157157
- "x86_64-linux-android"
158158
- "x86_64-rumprun-netbsd"
159159
- "x86_64-sun-solaris"
160-
- "x86_64-unknown-cloudabi"
161160
- "x86_64-unknown-freebsd"
162161
- "x86_64-unknown-fuchsia"
163162
- "x86_64-unknown-illumos"
@@ -166,9 +165,6 @@ tiers:
166165
- "x86_64-unknown-netbsd"
167166
- "x86_64-unknown-redox"
168167
Tier25:
169-
- "aarch64-unknown-cloudabi"
170-
- "armv7-unknown-cloudabi-eabihf"
171-
- "i686-unknown-cloudabi"
172168
- "powerpc-unknown-linux-gnuspe"
173169
- "sparc-unknown-linux-gnu"
174170
Tier3:
@@ -229,11 +225,11 @@ mod test {
229225
);
230226
assert_eq!(Some(8), defaults.html.tiers.get(&Tier::Tier1).map(Vec::len));
231227
assert_eq!(
232-
Some(48),
228+
Some(47),
233229
defaults.html.tiers.get(&Tier::Tier2).map(Vec::len)
234230
);
235231
assert_eq!(
236-
Some(5),
232+
Some(2),
237233
defaults.html.tiers.get(&Tier::Tier25).map(Vec::len)
238234
);
239235
assert_eq!(

0 commit comments

Comments
 (0)