]> git.lizzy.rs Git - rust.git/blob - src/bootstrap/toolstate.rs
Rollup merge of #70038 - DutchGhost:const-forget-tests, r=RalfJung
[rust.git] / src / bootstrap / toolstate.rs
1 use crate::builder::{Builder, RunConfig, ShouldRun, Step};
2 use build_helper::t;
3 use serde::{Deserialize, Serialize};
4 use std::collections::HashMap;
5 use std::env;
6 use std::fmt;
7 use std::fs;
8 use std::io::{Seek, SeekFrom};
9 use std::path::{Path, PathBuf};
10 use std::process::Command;
11 use std::time;
12
13 // Each cycle is 42 days long (6 weeks); the last week is 35..=42 then.
14 const BETA_WEEK_START: u64 = 35;
15
16 #[cfg(target_os = "linux")]
17 const OS: Option<&str> = Some("linux");
18
19 #[cfg(windows)]
20 const OS: Option<&str> = Some("windows");
21
22 #[cfg(all(not(target_os = "linux"), not(windows)))]
23 const OS: Option<&str> = None;
24
25 type ToolstateData = HashMap<Box<str>, ToolState>;
26
27 #[derive(Copy, Clone, Debug, Deserialize, Serialize, PartialEq, Eq, PartialOrd)]
28 #[serde(rename_all = "kebab-case")]
29 /// Whether a tool can be compiled, tested or neither
30 pub enum ToolState {
31     /// The tool compiles successfully, but the test suite fails
32     TestFail = 1,
33     /// The tool compiles successfully and its test suite passes
34     TestPass = 2,
35     /// The tool can't even be compiled
36     BuildFail = 0,
37 }
38
39 impl fmt::Display for ToolState {
40     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
41         write!(
42             f,
43             "{}",
44             match self {
45                 ToolState::TestFail => "test-fail",
46                 ToolState::TestPass => "test-pass",
47                 ToolState::BuildFail => "build-fail",
48             }
49         )
50     }
51 }
52
53 impl Default for ToolState {
54     fn default() -> Self {
55         // err on the safe side
56         ToolState::BuildFail
57     }
58 }
59
60 /// Number of days after the last promotion of beta.
61 /// Its value is 41 on the Tuesday where "Promote master to beta (T-2)" happens.
62 /// The Wednesday after this has value 0.
63 /// We track this value to prevent regressing tools in the last week of the 6-week cycle.
64 fn days_since_beta_promotion() -> u64 {
65     let since_epoch = t!(time::SystemTime::UNIX_EPOCH.elapsed());
66     (since_epoch.as_secs() / 86400 - 20) % 42
67 }
68
69 // These tools must test-pass on the beta/stable channels.
70 //
71 // On the nightly channel, their build step must be attempted, but they may not
72 // be able to build successfully.
73 static STABLE_TOOLS: &[(&str, &str)] = &[
74     ("book", "src/doc/book"),
75     ("nomicon", "src/doc/nomicon"),
76     ("reference", "src/doc/reference"),
77     ("rust-by-example", "src/doc/rust-by-example"),
78     ("edition-guide", "src/doc/edition-guide"),
79     ("rls", "src/tools/rls"),
80     ("rustfmt", "src/tools/rustfmt"),
81     ("clippy-driver", "src/tools/clippy"),
82 ];
83
84 // These tools are permitted to not build on the beta/stable channels.
85 //
86 // We do require that we checked whether they build or not on the tools builder,
87 // though, as otherwise we will be unable to file an issue if they start
88 // failing.
89 static NIGHTLY_TOOLS: &[(&str, &str)] = &[
90     ("miri", "src/tools/miri"),
91     ("embedded-book", "src/doc/embedded-book"),
92     ("rustc-guide", "src/doc/rustc-guide"),
93 ];
94
95 fn print_error(tool: &str, submodule: &str) {
96     eprintln!("");
97     eprintln!("We detected that this PR updated '{}', but its tests failed.", tool);
98     eprintln!("");
99     eprintln!("If you do intend to update '{}', please check the error messages above and", tool);
100     eprintln!("commit another update.");
101     eprintln!("");
102     eprintln!("If you do NOT intend to update '{}', please ensure you did not accidentally", tool);
103     eprintln!("change the submodule at '{}'. You may ask your reviewer for the", submodule);
104     eprintln!("proper steps.");
105     std::process::exit(3);
106 }
107
108 fn check_changed_files(toolstates: &HashMap<Box<str>, ToolState>) {
109     // Changed files
110     let output = std::process::Command::new("git")
111         .arg("diff")
112         .arg("--name-status")
113         .arg("HEAD")
114         .arg("HEAD^")
115         .output();
116     let output = match output {
117         Ok(o) => o,
118         Err(e) => {
119             eprintln!("Failed to get changed files: {:?}", e);
120             std::process::exit(1);
121         }
122     };
123
124     let output = t!(String::from_utf8(output.stdout));
125
126     for (tool, submodule) in STABLE_TOOLS.iter().chain(NIGHTLY_TOOLS.iter()) {
127         let changed = output.lines().any(|l| l.starts_with('M') && l.ends_with(submodule));
128         eprintln!("Verifying status of {}...", tool);
129         if !changed {
130             continue;
131         }
132
133         eprintln!("This PR updated '{}', verifying if status is 'test-pass'...", submodule);
134         if toolstates[*tool] != ToolState::TestPass {
135             print_error(tool, submodule);
136         }
137     }
138 }
139
140 #[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
141 pub struct ToolStateCheck;
142
143 impl Step for ToolStateCheck {
144     type Output = ();
145
146     /// Checks tool state status.
147     ///
148     /// This is intended to be used in the `checktools.sh` script. To use
149     /// this, set `save-toolstates` in `config.toml` so that tool status will
150     /// be saved to a JSON file. Then, run `x.py test --no-fail-fast` for all
151     /// of the tools to populate the JSON file. After that is done, this
152     /// command can be run to check for any status failures, and exits with an
153     /// error if there are any.
154     ///
155     /// This also handles publishing the results to the `history` directory of
156     /// the toolstate repo https://github.com/rust-lang-nursery/rust-toolstate
157     /// if the env var `TOOLSTATE_PUBLISH` is set. Note that there is a
158     /// *separate* step of updating the `latest.json` file and creating GitHub
159     /// issues and comments in `src/ci/publish_toolstate.sh`, which is only
160     /// performed on master. (The shell/python code is intended to be migrated
161     /// here eventually.)
162     ///
163     /// The rules for failure are:
164     /// * If the PR modifies a tool, the status must be test-pass.
165     ///   NOTE: There is intent to change this, see
166     ///   https://github.com/rust-lang/rust/issues/65000.
167     /// * All "stable" tools must be test-pass on the stable or beta branches.
168     /// * During beta promotion week, a PR is not allowed to "regress" a
169     ///   stable tool. That is, the status is not allowed to get worse
170     ///   (test-pass to test-fail or build-fail).
171     fn run(self, builder: &Builder<'_>) {
172         if builder.config.dry_run {
173             return;
174         }
175
176         let days_since_beta_promotion = days_since_beta_promotion();
177         let in_beta_week = days_since_beta_promotion >= BETA_WEEK_START;
178         let is_nightly = !(builder.config.channel == "beta" || builder.config.channel == "stable");
179         let toolstates = builder.toolstates();
180
181         let mut did_error = false;
182
183         for (tool, _) in STABLE_TOOLS.iter().chain(NIGHTLY_TOOLS.iter()) {
184             if !toolstates.contains_key(*tool) {
185                 did_error = true;
186                 eprintln!("error: Tool `{}` was not recorded in tool state.", tool);
187             }
188         }
189
190         if did_error {
191             std::process::exit(1);
192         }
193
194         check_changed_files(&toolstates);
195         checkout_toolstate_repo();
196         let old_toolstate = read_old_toolstate();
197
198         for (tool, _) in STABLE_TOOLS.iter() {
199             let state = toolstates[*tool];
200
201             if state != ToolState::TestPass {
202                 if !is_nightly {
203                     did_error = true;
204                     eprintln!("error: Tool `{}` should be test-pass but is {}", tool, state);
205                 } else if in_beta_week {
206                     let old_state = old_toolstate
207                         .iter()
208                         .find(|ts| ts.tool == *tool)
209                         .expect("latest.json missing tool")
210                         .state();
211                     if state < old_state {
212                         did_error = true;
213                         eprintln!(
214                             "error: Tool `{}` has regressed from {} to {} during beta week.",
215                             tool, old_state, state
216                         );
217                     } else {
218                         // This warning only appears in the logs, which most
219                         // people won't read. It's mostly here for testing and
220                         // debugging.
221                         eprintln!(
222                             "warning: Tool `{}` is not test-pass (is `{}`), \
223                             this should be fixed before beta is branched.",
224                             tool, state
225                         );
226                     }
227                 }
228                 // `publish_toolstate.py` is responsible for updating
229                 // `latest.json` and creating comments/issues warning people
230                 // if there is a regression. That all happens in a separate CI
231                 // job on the master branch once the PR has passed all tests
232                 // on the `auto` branch.
233             }
234         }
235
236         if did_error {
237             std::process::exit(1);
238         }
239
240         if builder.config.channel == "nightly" && env::var_os("TOOLSTATE_PUBLISH").is_some() {
241             commit_toolstate_change(&toolstates);
242         }
243     }
244
245     fn should_run(run: ShouldRun<'_>) -> ShouldRun<'_> {
246         run.path("check-tools")
247     }
248
249     fn make_run(run: RunConfig<'_>) {
250         run.builder.ensure(ToolStateCheck);
251     }
252 }
253
254 impl Builder<'_> {
255     fn toolstates(&self) -> HashMap<Box<str>, ToolState> {
256         if let Some(ref path) = self.config.save_toolstates {
257             if let Some(parent) = path.parent() {
258                 // Ensure the parent directory always exists
259                 t!(std::fs::create_dir_all(parent));
260             }
261             let mut file =
262                 t!(fs::OpenOptions::new().create(true).write(true).read(true).open(path));
263
264             serde_json::from_reader(&mut file).unwrap_or_default()
265         } else {
266             Default::default()
267         }
268     }
269
270     /// Updates the actual toolstate of a tool.
271     ///
272     /// The toolstates are saved to the file specified by the key
273     /// `rust.save-toolstates` in `config.toml`. If unspecified, nothing will be
274     /// done. The file is updated immediately after this function completes.
275     pub fn save_toolstate(&self, tool: &str, state: ToolState) {
276         if let Some(ref path) = self.config.save_toolstates {
277             if let Some(parent) = path.parent() {
278                 // Ensure the parent directory always exists
279                 t!(std::fs::create_dir_all(parent));
280             }
281             let mut file =
282                 t!(fs::OpenOptions::new().create(true).read(true).write(true).open(path));
283
284             let mut current_toolstates: HashMap<Box<str>, ToolState> =
285                 serde_json::from_reader(&mut file).unwrap_or_default();
286             current_toolstates.insert(tool.into(), state);
287             t!(file.seek(SeekFrom::Start(0)));
288             t!(file.set_len(0));
289             t!(serde_json::to_writer(file, &current_toolstates));
290         }
291     }
292 }
293
294 fn toolstate_repo() -> String {
295     env::var("TOOLSTATE_REPO")
296         .unwrap_or_else(|_| "https://github.com/rust-lang-nursery/rust-toolstate.git".to_string())
297 }
298
299 /// Directory where the toolstate repo is checked out.
300 const TOOLSTATE_DIR: &str = "rust-toolstate";
301
302 /// Checks out the toolstate repo into `TOOLSTATE_DIR`.
303 fn checkout_toolstate_repo() {
304     if let Ok(token) = env::var("TOOLSTATE_REPO_ACCESS_TOKEN") {
305         prepare_toolstate_config(&token);
306     }
307     if Path::new(TOOLSTATE_DIR).exists() {
308         eprintln!("Cleaning old toolstate directory...");
309         t!(fs::remove_dir_all(TOOLSTATE_DIR));
310     }
311
312     let status = Command::new("git")
313         .arg("clone")
314         .arg("--depth=1")
315         .arg(toolstate_repo())
316         .arg(TOOLSTATE_DIR)
317         .status();
318     let success = match status {
319         Ok(s) => s.success(),
320         Err(_) => false,
321     };
322     if !success {
323         panic!("git clone unsuccessful (status: {:?})", status);
324     }
325 }
326
327 /// Sets up config and authentication for modifying the toolstate repo.
328 fn prepare_toolstate_config(token: &str) {
329     fn git_config(key: &str, value: &str) {
330         let status = Command::new("git").arg("config").arg("--global").arg(key).arg(value).status();
331         let success = match status {
332             Ok(s) => s.success(),
333             Err(_) => false,
334         };
335         if !success {
336             panic!("git config key={} value={} failed (status: {:?})", key, value, status);
337         }
338     }
339
340     // If changing anything here, then please check that `src/ci/publish_toolstate.sh` is up to date
341     // as well.
342     git_config("user.email", "7378925+rust-toolstate-update@users.noreply.github.com");
343     git_config("user.name", "Rust Toolstate Update");
344     git_config("credential.helper", "store");
345
346     let credential = format!("https://{}:x-oauth-basic@github.com\n", token,);
347     let git_credential_path = PathBuf::from(t!(env::var("HOME"))).join(".git-credentials");
348     t!(fs::write(&git_credential_path, credential));
349 }
350
351 /// Reads the latest toolstate from the toolstate repo.
352 fn read_old_toolstate() -> Vec<RepoState> {
353     let latest_path = Path::new(TOOLSTATE_DIR).join("_data").join("latest.json");
354     let old_toolstate = t!(fs::read(latest_path));
355     t!(serde_json::from_slice(&old_toolstate))
356 }
357
358 /// This function `commit_toolstate_change` provides functionality for pushing a change
359 /// to the `rust-toolstate` repository.
360 ///
361 /// The function relies on a GitHub bot user, which should have a Personal access
362 /// token defined in the environment variable $TOOLSTATE_REPO_ACCESS_TOKEN. If for
363 /// some reason you need to change the token, please update the Azure Pipelines
364 /// variable group.
365 ///
366 ///   1. Generate a new Personal access token:
367 ///
368 ///       * Login to the bot account, and go to Settings -> Developer settings ->
369 ///           Personal access tokens
370 ///       * Click "Generate new token"
371 ///       * Enable the "public_repo" permission, then click "Generate token"
372 ///       * Copy the generated token (should be a 40-digit hexadecimal number).
373 ///           Save it somewhere secure, as the token would be gone once you leave
374 ///           the page.
375 ///
376 ///   2. Update the variable group in Azure Pipelines
377 ///
378 ///       * Ping a member of the infrastructure team to do this.
379 ///
380 ///   4. Replace the email address below if the bot account identity is changed
381 ///
382 ///       * See <https://help.github.com/articles/about-commit-email-addresses/>
383 ///           if a private email by GitHub is wanted.
384 fn commit_toolstate_change(current_toolstate: &ToolstateData) {
385     let message = format!("({} CI update)", OS.expect("linux/windows only"));
386     let mut success = false;
387     for _ in 1..=5 {
388         // Upload the test results (the new commit-to-toolstate mapping) to the toolstate repo.
389         // This does *not* change the "current toolstate"; that only happens post-landing
390         // via `src/ci/docker/publish_toolstate.sh`.
391         publish_test_results(&current_toolstate);
392
393         // `git commit` failing means nothing to commit.
394         let status = t!(Command::new("git")
395             .current_dir(TOOLSTATE_DIR)
396             .arg("commit")
397             .arg("-a")
398             .arg("-m")
399             .arg(&message)
400             .status());
401         if !status.success() {
402             success = true;
403             break;
404         }
405
406         let status = t!(Command::new("git")
407             .current_dir(TOOLSTATE_DIR)
408             .arg("push")
409             .arg("origin")
410             .arg("master")
411             .status());
412         // If we successfully push, exit.
413         if status.success() {
414             success = true;
415             break;
416         }
417         eprintln!("Sleeping for 3 seconds before retrying push");
418         std::thread::sleep(std::time::Duration::from_secs(3));
419         let status = t!(Command::new("git")
420             .current_dir(TOOLSTATE_DIR)
421             .arg("fetch")
422             .arg("origin")
423             .arg("master")
424             .status());
425         assert!(status.success());
426         let status = t!(Command::new("git")
427             .current_dir(TOOLSTATE_DIR)
428             .arg("reset")
429             .arg("--hard")
430             .arg("origin/master")
431             .status());
432         assert!(status.success());
433     }
434
435     if !success {
436         panic!("Failed to update toolstate repository with new data");
437     }
438 }
439
440 /// Updates the "history" files with the latest results.
441 ///
442 /// These results will later be promoted to `latest.json` by the
443 /// `publish_toolstate.py` script if the PR passes all tests and is merged to
444 /// master.
445 fn publish_test_results(current_toolstate: &ToolstateData) {
446     let commit = t!(std::process::Command::new("git").arg("rev-parse").arg("HEAD").output());
447     let commit = t!(String::from_utf8(commit.stdout));
448
449     let toolstate_serialized = t!(serde_json::to_string(&current_toolstate));
450
451     let history_path = Path::new(TOOLSTATE_DIR)
452         .join("history")
453         .join(format!("{}.tsv", OS.expect("linux/windows only")));
454     let mut file = t!(fs::read_to_string(&history_path));
455     let end_of_first_line = file.find('\n').unwrap();
456     file.insert_str(end_of_first_line, &format!("\n{}\t{}", commit.trim(), toolstate_serialized));
457     t!(fs::write(&history_path, file));
458 }
459
460 #[derive(Debug, Serialize, Deserialize)]
461 struct RepoState {
462     tool: String,
463     windows: ToolState,
464     linux: ToolState,
465     commit: String,
466     datetime: String,
467 }
468
469 impl RepoState {
470     fn state(&self) -> ToolState {
471         if cfg!(target_os = "linux") {
472             self.linux
473         } else if cfg!(windows) {
474             self.windows
475         } else {
476             unimplemented!()
477         }
478     }
479 }