From 34dc5238752ac9bd1c4cc590810013a9812ae7ae Mon Sep 17 00:00:00 2001 From: Chris Wong Date: Sun, 19 Sep 2021 22:09:20 +1000 Subject: [PATCH 1/2] Revert Cargo bug workaround for ci.yml --- .github/workflows/ci.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3316c55..96dad894 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,10 +55,7 @@ jobs: override: true - name: Build documentation - run: | - # https://github.com/rust-lang/cargo/issues/9919 - export CARGO_HTTP_MULTIPLEXING=false - cd docs && make -j$(nproc) + run: cd docs && make -j$(nproc) examples: name: Examples @@ -77,10 +74,7 @@ jobs: override: true - name: Doctest - run: | - # https://github.com/rust-lang/cargo/issues/9919 - export CARGO_HTTP_MULTIPLEXING=false - cd doctest && cargo check + run: cd doctest && cargo check rustfmt: name: Rustfmt From 6d033f5aa45c75901235de31f9904e0b79dafc08 Mon Sep 17 00:00:00 2001 From: Chris Wong Date: Sun, 19 Sep 2021 22:10:53 +1000 Subject: [PATCH 2/2] Revert Cargo bug workaround for publish-docs.yml --- .github/workflows/publish-docs.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 8ff61674..6da913d6 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -33,10 +33,7 @@ jobs: override: true - name: Build documentation - run: | - # https://github.com/rust-lang/cargo/issues/9919 - export CARGO_HTTP_MULTIPLEXING=false - cd docs && make -j$(nproc) + run: cd docs && make -j$(nproc) - name: Deploy uses: peaceiris/actions-gh-pages@v3