From 4950801ca278f847be442c4e874d4d1bfcadf7bc Mon Sep 17 00:00:00 2001 From: Jieyou Xu Date: Fri, 18 Sep 2026 23:23:38 +0800 Subject: [PATCH] ci: temporarily disable `test-x86_64-fuchsia` Since it's failing with ```text ninja: error: '/checkout/obj/install/lib/rustlib/src/rust/library/core/src/lib.rs', needed by 'kernel_x64.lk_debug_level_2/obj/zircon/kernel/lib/rust/libcore.rlib', missing and no known rule to make it ``` and it's not immediately obvious what is wrong. --- src/ci/github-actions/jobs.yml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/ci/github-actions/jobs.yml b/src/ci/github-actions/jobs.yml index d0645a0f9d475..d5c23b0f31c5a 100644 --- a/src/ci/github-actions/jobs.yml +++ b/src/ci/github-actions/jobs.yml @@ -378,13 +378,15 @@ auto: - name: test-various <<: *job-linux-4c - - name: test-x86_64-fuchsia - # Only run this job on the nightly channel. Fuchsia requires - # nightly features to compile, and this job would fail if - # executed on beta and stable. - only_on_channel: nightly - doc_url: https://rustc-dev-guide.rust-lang.org/tests/fuchsia.html - <<: *job-linux-x86-8c-ec2 + # FIXME(#162970): temporarily disabled due to missing rule? + # + #- name: test-x86_64-fuchsia + # # Only run this job on the nightly channel. Fuchsia requires + # # nightly features to compile, and this job would fail if + # # executed on beta and stable. + # only_on_channel: nightly + # doc_url: https://rustc-dev-guide.rust-lang.org/tests/fuchsia.html + # <<: *job-linux-x86-8c-ec2 # Tests integration with Rust for Linux. # Builds stage 1 compiler and tries to compile a few RfL examples with it.