From 0249bb7686d39641333dc4139e450150923fe151 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Mockers?= Date: Tue, 12 Nov 2024 00:23:30 +0100 Subject: [PATCH] don't check doc in beta ci as it requires nightly (#16356) # Objective - Fixes #16350 ## Solution - Doc requires nightly, it can't run on beta --- .github/workflows/weekly.yml | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/.github/workflows/weekly.yml b/.github/workflows/weekly.yml index c824dcee87..6ff0f5d2f0 100644 --- a/.github/workflows/weekly.yml +++ b/.github/workflows/weekly.yml @@ -59,28 +59,10 @@ jobs: # See tools/ci/src/main.rs for the commands this runs run: cargo run -p ci -- compile - check-doc: - runs-on: ubuntu-latest - timeout-minutes: 30 - steps: - - uses: actions/checkout@v4 - - uses: dtolnay/rust-toolchain@beta - - name: Install Linux dependencies - uses: ./.github/actions/install-linux-deps - with: - wayland: true - xkb: true - - name: Build and check docs - # See tools/ci/src/main.rs for the commands this runs - run: cargo run -p ci -- doc - env: - CARGO_INCREMENTAL: 0 - RUSTFLAGS: "-C debuginfo=0 --cfg docsrs_dep" - open-issue: name: Warn that weekly CI fails runs-on: ubuntu-latest - needs: [test, lint, check-compiles, check-doc] + needs: [test, lint, check-compiles] permissions: issues: write # Use always() so the job doesn't get canceled if any other jobs fail