From a73be1273f0c6977e483095a8c98f2280860fdc4 Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Wed, 9 Oct 2024 15:12:20 +0300 Subject: [PATCH] do glue --- .github/workflows/neqo_glue.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/neqo_glue.yml b/.github/workflows/neqo_glue.yml index b045ae39f..b695fbb58 100644 --- a/.github/workflows/neqo_glue.yml +++ b/.github/workflows/neqo_glue.yml @@ -58,6 +58,7 @@ jobs: minimum-version: ${{ steps.nss-version.outputs.minimum }} - run: | + cd gecko-dev/netwerk/socket/neqo_glue { echo '[patch."https://github.com/mozilla/neqo"]' echo 'neqo-http3 = { path = "../../../neqo-http3" }' @@ -65,8 +66,8 @@ jobs: echo 'neqo-common = { path = "../../../neqo-common" }' echo 'neqo-qpack = { path = "../../../neqo-qpack" }' echo 'neqo-crypto = { path = "../../../neqo-crypto" }' - } >> gecko-dev/netwerk/socket/neqo_glue/Cargo.toml - - run: cargo hack clippy --all-targets --feature-powerset --exclude-features gecko -- -D warnings - - run: cargo doc --workspace --no-deps --document-private-items + } >> Cargo.toml + cargo hack clippy --all-targets --feature-powerset --exclude-features gecko -- -D warnings + cargo doc --workspace --no-deps --document-private-items env: RUSTDOCFLAGS: "--deny rustdoc::broken_intra_doc_links --deny warnings"