Skip to content

Commit

Permalink
Revert Cargo bug workaround (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
lambda-fairy authored Sep 20, 2021
1 parent fe4345d commit 9236d18
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 12 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/publish-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9236d18

Please sign in to comment.