Revert Cargo bug workaround ()

This commit is contained in:
Chris Wong 2021-09-20 20:37:44 +10:00 committed by GitHub
parent fe4345d0d8
commit 9236d18511
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 12 deletions
.github/workflows

View file

@ -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

View file

@ -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