File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -53,12 +53,13 @@ diff --git a/src/bootstrap/src/core/config/config.rs b/src/bootstrap/src/core/co
53
53
index a656927b1f6..44fc5546fac 100644
54
54
--- a/src/bootstrap/src/core/config/config.rs
55
55
+++ b/src/bootstrap/src/core/config/config.rs
56
- @@ -2249,13 +2249,6 @@ pub fn parse_download_ci_llvm<'a>(
56
+ @@ -2249,14 +2249,6 @@ pub fn parse_download_ci_llvm<'a>(
57
57
);
58
58
}
59
59
60
- - if b && dwn_ctx.is_running_on_ci {
61
- - // On CI, we must always rebuild LLVM if there were any modifications to it
60
+ - #[cfg(not(test))]
61
+ - if b && dwn_ctx.is_running_on_ci && CiEnv::is_rust_lang_managed_ci_job() {
62
+ - // On rust-lang CI, we must always rebuild LLVM if there were any modifications to it
62
63
- panic!(
63
64
- "\` llvm.download-ci-llvm\` cannot be set to \` true\` on CI. Use \` if-unchanged\` instead."
64
65
- );
Original file line number Diff line number Diff line change @@ -46,7 +46,9 @@ rm tests/ui/abi/mir/mir_codegen_calls_variadic.rs # requires float varargs
46
46
rm tests/ui/abi/variadic-ffi.rs # requires callee side vararg support
47
47
rm -r tests/run-make/c-link-to-rust-va-list-fn # requires callee side vararg support
48
48
rm tests/ui/c-variadic/valid.rs # same
49
- rm tests/ui/c-variadic/naked.rs # same
49
+ rm tests/ui/c-variadic/trait-method.rs # same
50
+ rm tests/ui/c-variadic/inherent-method.rs # same
51
+ rm tests/ui/c-variadic/same-program-multiple-abis-x86_64.rs # variadics for calling conventions other than C unsupported
50
52
rm tests/ui/delegation/fn-header.rs
51
53
52
54
# misc unimplemented things
@@ -64,7 +66,6 @@ rm -r tests/run-make/embed-source-dwarf # embedding sources in debuginfo
64
66
rm -r tests/run-make/used-proc-macro # used(linker) isn't supported yet
65
67
rm tests/ui/linking/no-gc-encapsulation-symbols.rs # same
66
68
rm tests/ui/attributes/fn-align-dyn.rs # per-function alignment not supported
67
- rm tests/ui/c-variadic/same-program-multiple-abis-x86_64.rs # variadics for calling conventions other than C unsupported
68
69
rm -r tests/ui/explicit-tail-calls # tail calls
69
70
70
71
# requires LTO
You can’t perform that action at this time.
0 commit comments