-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
118 lines (110 loc) · 3.76 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
---
# Path to a handlebars template file:
template_path: template.html
# A pattern that will be used to render output files. Any instance of a
# `{{target}}` will be replaced with a target name.
output_pattern: "output/{{target}}.html"
# A path where a file tree of available packages will be created.
# The tool will generate a set of files under a given *output* directory with the
# following pattern: file_tree_output/$target/$package, where $target stands for a target
# host architecture, like x86_64-unknown-linux-gnu, and $package stands for a package
# name, like rls or rust-src. Each of those files will contain a date in a "%Y-%m-%d"
# format (e.g. 2019-12-24) which represents the latest date when the package was (is)
# available for that specific target.
file_tree_output: output/
# For how many days in the past would you like to peek.
days_in_past: 7
# For how many additional days should we look into to calculate "the last available" date.
additional_lookup_days: 22
# A release channel to check.
# If ommited, the default channel is nightly.
channel: nightly
# Verbosity level, might be one of the following: OFF, ERROR, WARN, INFO, DEBUG or TRACE.
# If ommited, the default level is WARN.
verbosity: INFO
# A path where to store the downloaded manifests.
# If ommited, no cache will be used, i.e. all the manifests will be
# re-downloaded every time you run the tool.
cache_path: /tmp/manifests/
# Platform tiers lists
tiers:
Tier 1:
- "i686-pc-windows-gnu"
- "i686-pc-windows-msvc"
- "i686-unknown-linux-gnu"
- "x86_64-apple-darwin"
- "x86_64-pc-windows-gnu"
- "x86_64-pc-windows-msvc"
- "x86_64-unknown-linux-gnu"
- "aarch64-unknown-linux-gnu"
Tier 2:
- "aarch64-apple-darwin"
- "aarch64-apple-ios"
- "aarch64-fuchsia"
- "aarch64-linux-android"
- "aarch64-pc-windows-msvc"
- "aarch64-unknown-linux-musl"
- "arm-linux-androideabi"
- "arm-unknown-linux-gnueabi"
- "arm-unknown-linux-gnueabihf"
- "arm-unknown-linux-musleabi"
- "arm-unknown-linux-musleabihf"
- "armv5te-unknown-linux-gnueabi"
- "armv7-linux-androideabi"
- "armv7-unknown-linux-gnueabihf"
- "armv7-unknown-linux-musleabihf"
- "asmjs-unknown-emscripten"
- "i586-pc-windows-msvc"
- "i586-unknown-linux-gnu"
- "i586-unknown-linux-musl"
- "i686-linux-android"
- "i686-unknown-freebsd"
- "i686-unknown-linux-musl"
- "mips-unknown-linux-gnu"
- "mips-unknown-linux-musl"
- "mips64-unknown-linux-gnuabi64"
- "mips64el-unknown-linux-gnuabi64"
- "mipsel-unknown-linux-gnu"
- "mipsel-unknown-linux-musl"
- "powerpc-unknown-linux-gnu"
- "powerpc64-unknown-linux-gnu"
- "powerpc64le-unknown-linux-gnu"
- "s390x-unknown-linux-gnu"
- "sparc64-unknown-linux-gnu"
- "sparcv9-sun-solaris"
- "wasm32-unknown-unknown"
- "wasm32-unknown-emscripten"
- "wasm32-wasi"
- "x86_64-apple-ios"
- "x86_64-fuchsia"
- "x86_64-linux-android"
- "x86_64-sun-solaris"
- "x86_64-unknown-freebsd"
- "x86_64-unknown-illumos"
- "x86_64-unknown-linux-gnux32"
- "x86_64-unknown-linux-musl"
- "x86_64-unknown-netbsd"
- "x86_64-unknown-redox"
Tier 2.5:
- "powerpc-unknown-linux-gnuspe"
- "sparc-unknown-linux-gnu"
Tier 3:
- "armv7-apple-ios"
- "armv7s-apple-ios"
- "i386-apple-ios"
- "i686-apple-darwin"
- "i686-unknown-haiku"
- "i686-unknown-netbsd"
- "le32-unknown-nacl"
- "mips-unknown-linux-uclibc"
- "mipsel-unknown-linux-uclibc"
- "msp430-none-elf"
- "sparc64-unknown-netbsd"
- "thumbv6m-none-eabi"
- "thumbv7em-none-eabi"
- "thumbv7em-none-eabihf"
- "thumbv7m-none-eabi"
- "x86_64-unknown-bitrig"
- "x86_64-unknown-dragonfly"
- "x86_64-unknown-haiku"
- "x86_64-unknown-openbsd"