From 351e0f7a311982d06fb2138949f9ba6d70d95268 Mon Sep 17 00:00:00 2001
From: Jieyou Xu <jieyouxu@outlook.com>
Date: Wed, 19 Mar 2025 13:43:34 +0800
Subject: [PATCH] Temporarily disable Fuchsia test job to unblock queue

See
<https://rust-lang.zulipchat.com/#narrow/channel/242791-t-infra/topic/fuchsia.20failure/with/506637259>
for efforts to fix the test job.
---
 src/ci/github-actions/jobs.yml | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/src/ci/github-actions/jobs.yml b/src/ci/github-actions/jobs.yml
index 4888bf9f867..0714c4267b9 100644
--- a/src/ci/github-actions/jobs.yml
+++ b/src/ci/github-actions/jobs.yml
@@ -262,13 +262,16 @@ auto:
   - name: test-various
     <<: *job-linux-4c
 
-  - name: 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-8c
+  # FIXME: temporarily disabled due to fuchsia server rate limits. See
+  # <https://rust-lang.zulipchat.com/#narrow/channel/242791-t-infra/topic/fuchsia.20failure/with/506637259>.
+  #
+  #- name: 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-8c
 
   # Tests integration with Rust for Linux.
   # Builds stage 1 compiler and tries to compile a few RfL examples with it.