We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a26acb commit 6f2eb0dCopy full SHA for 6f2eb0d
action.yml
@@ -111,5 +111,13 @@ runs:
111
fi
112
shell: bash
113
114
+ - run: |
115
+ : work around spurious network errors in curl 8.0
116
+ # https://rust-lang.zulipchat.com/#narrow/stream/246057-t-cargo/topic/timeout.20investigation
117
+ if rustc +${{steps.parse.outputs.toolchain}} --version --verbose | grep -q '^release: 1\.7[01]\.'; then
118
+ echo CARGO_HTTP_MULTIPLEXING=false >> $GITHUB_ENV
119
+ fi
120
+ shell: bash
121
+
122
- run: rustc +${{steps.parse.outputs.toolchain}} --version --verbose
123
0 commit comments