From fa9baab0f7e534a38bbee27ceafb222b4a9f3b7f Mon Sep 17 00:00:00 2001 From: Jimmy Chen Date: Thu, 16 Mar 2023 01:43:31 +1100 Subject: [PATCH] Temporarily allow Rust check warnings on 4844 branch. (#4088) --- .github/workflows/test-suite.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 445f71fa09..54ee974c7f 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -11,7 +11,8 @@ on: env: # Deny warnings in CI # Disable debug info (see https://github.com/sigp/lighthouse/issues/4005) - RUSTFLAGS: "-D warnings -C debuginfo=0" + # FIXME: temporarily allow warnings on 4844 branch. Revert to original later: RUSTFLAGS: "-D warnings -C debuginfo=0" + RUSTFLAGS: "-C debuginfo=0" # The Nightly version used for cargo-udeps, might need updating from time to time. PINNED_NIGHTLY: nightly-2022-12-15 # Prevent Github API rate limiting.