Revert Cargo bug workaround (#297)
This commit is contained in:
parent
fe4345d0d8
commit
9236d18511
2 changed files with 3 additions and 12 deletions
.github/workflows
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
5
.github/workflows/publish-docs.yml
vendored
5
.github/workflows/publish-docs.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue