From 66c1921864a83a5de4c32c92089c8cfedb5833c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Fri, 20 Sep 2024 18:07:24 +0200 Subject: [PATCH] Use specific `nightly` build for `document` CI workflow `wgpu` takes a long time to document otherwise. --- .github/workflows/document.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/document.yml b/.github/workflows/document.yml index 57dc13759a..c60a25b447 100644 --- a/.github/workflows/document.yml +++ b/.github/workflows/document.yml @@ -8,12 +8,12 @@ jobs: steps: - uses: hecrj/setup-rust-action@v2 with: - rust-version: nightly + rust-version: nightly-2023-12-17 - uses: actions/checkout@v2 - name: Generate documentation run: | RUSTDOCFLAGS="--cfg docsrs" \ - cargo doc --no-deps --all-features \ + cargo +nightly-2023-12-17 doc --no-deps --all-features \ -p futures-core \ -p iced_core \ -p iced_highlighter \