about summary refs log tree commit diff
path: root/src/ci/docker/host-x86_64/mingw-check
AgeCommit message (Collapse)AuthorLines
2023-12-16test `x clippy --stage 0` in ciJoshua Nelson-0/+6
2023-11-27Update reuse command to include submodules.Jonathan Pallant (Ferrous Systems)-1/+1
2023-06-12Publish docs as github artifacts during CITrevor Gross-0/+3
This PR saves library docs as github artifacts so they can be easily viewed for review. Discussed in <https://rust-lang.zulipchat.com/#narrow/stream/242791-t-infra/topic/Building.20docs.20for.20PR.20CI>
2023-04-17Spelling src/ciJosh Soref-1/+1
* architecture * configures * preparation * toolstate * unknown Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
2023-03-12Add rustdoc-gui eslint check into CIGuillaume Gomez-1/+2
2023-03-11Add rustdoc-js eslint check into CIGuillaume Gomez-1/+2
2023-02-25check is default to all targets nowyukang-2/+2
2023-02-24enable validate-mir-opts in mingw-checkyukang-1/+3
2023-01-29Rollup merge of #96763 - Abdur-rahmaanJ:patch-1, r=Mark-SimulacrumMatthias Krüger-6/+0
Fix maintainer validation message State clearly why maintainer verification is not activating, ruling out the user thinking they misconfigured something.
2023-01-22fix maintainer validation messageAbdur-Rahmaan Janhangeer-6/+0
fix remove token check for maintainers fix: rm validate_maintainers function
2023-01-16ci: upgrade mingw-check to ubuntu:22.04Josh Stone-141/+70
2023-01-10Check compiler docs in PR CIAlbert Larsan-0/+1
2022-12-22Run `tidy` in its own job in PR CIDeadbeef-1/+0
This duplicates mingw-check into two jobs where one job runs `tidy` only while the other job does not. The tidy job will not cancel other jobs on failure.
2022-12-18Auto merge of #105714 - jyn514:tidy-first, r=Mark-Simulacrumbors-1/+1
Run `x test tidy` sooner in mingw-check It takes less time to run than the other tests and is more likely to fail. `expand-yaml-anchors` is still run first to make sure the CI files are internally consistent. Note that changing to `--stage 0` doesn't actually do anything since bootstrap tools are always built with the bootstrap compiler, this just makes it less confusing. cc https://github.com/rust-lang/rust/pull/105058/commits/83bab41b5b2d4752d187dd91b05c88ac74cf3783
2022-12-16Test documentation of hidden items in stdChris Denton-1/+1
2022-12-14Run `x test tidy` sooner in mingw-checkJoshua Nelson-1/+1
It takes less time to run than the other tests and is more likely to fail. `expand-yaml-anchors` is still run first to make sure the CI files are internally consistent.
2022-12-02reduce docker image sizes by cleaning cache/squashing stepsklensy-4/+4
2022-09-04Test internal documentationChris Denton-1/+2
2022-07-18check REUSE compliance in CIPietro Albini-0/+176
2022-07-08Update src/ci/docker/host-x86_64/mingw-check/DockerfileGimgim-1/+1
Co-authored-by: Joshua Nelson <github@jyn.dev>
2022-07-08Run std tests in CIGimgim-0/+1
2022-05-07Change eslint rules from configuration comments to configuration filesFolyd-1/+1
2022-01-05Switch to es6 for eslintJacob Hoffman-Andrews-5/+5
Also update Node to v16.9.0, es-check to 6.1.1, and eslint to 8.6.0.
2021-07-07Clean up rustdoc static filesGuillaume Gomez-2/+2
2021-07-03Only run error code explanation removal check if on CIGuillaume Gomez-1/+6
2021-07-02Add check to ensure error code explanations are not removed anymore even if ↵Guillaume Gomez-0/+17
not emitted
2021-05-30Add eslint checks in CIGuillaume Gomez-1/+3
2021-05-15Don't generate more docs than necessaryGuillaume Gomez-1/+1
2021-03-04Pin es-check version to prevent unrelated CI failuresYuki Okushi-1/+2
2021-02-17Add check for ES5 in CIGuillaume Gomez-1/+8
2020-10-03Check all Cargo targets on CIMark Rousskov-1/+1
2020-08-26Install ninja on CI buildersJosh Triplett-0/+1
Windows CI builds already install ninja. Install it in all the Docker-based builds as well.
2020-07-27Use --stage 2 explicitly in CIJoshua Nelson-2/+2
- expand yaml anchors - don't use --stage 2 for dist; that's already the default
2020-07-27mv std libs to library/mark-1/+1
2020-07-04Auto merge of #74019 - Manishearth:rollup-2st3jsk, r=Manishearthbors-1/+1
Rollup of 12 pull requests Successful merges: - #73140 (Fallback to xml.etree.ElementTree) - #73670 (Add `format_args_capture` feature) - #73693 (Use exhaustive match in const_prop.rs) - #73845 (Use &raw in A|Rc::as_ptr) - #73861 (Create E0768) - #73881 (Standardize bibliographic citations in rustc API docs) - #73925 (Improve comments from #72617, as suggested by RalfJung) - #73949 ([mir-opt] Fix mis-optimization and other issues with the SimplifyArmIdentity pass) - #73984 (Edit docs for rustc_data_structures::graph::scc) - #73985 (Fix "getting started" link) - #73997 (fix typo) - #73999 (Bump mingw-check CI image from Ubuntu 16.04 to 18.04.) Failed merges: - #74000 (add `lazy_normalization_consts` feature gate) r? @ghost
2020-07-03ci: move all x86_64 runners to the host-x86_64 directoryPietro Albini-0/+50
We need to add runners designed for an aarch64 host system, and it'd be nice to return an error message if someone tries to run an image designed for an host architecture in another one. To start the work on this, this commit moves all the existing builders in the host-x86_64 directory, and changes the run.sh script to look up the image in the correct directory based on the host architecture.