mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-11-29 03:56:33 -05:00
ci: fix spurious network erros (#268)
Occasionally our ci jobs would fail due to network errors. This is a known issue which is worked around by disabling http multiplexing, for now. Hopefully.
This commit is contained in:
parent
dfe1a28267
commit
504eb0d014
2 changed files with 12 additions and 0 deletions
|
|
@ -78,6 +78,12 @@ jobs:
|
|||
gir1.2-javascriptcoregtk-4.1=2.44.0-2 \
|
||||
gir1.2-webkit2-4.1=2.44.0-2;
|
||||
|
||||
- name: work around spurious network errors in curl 8.0
|
||||
run: |
|
||||
if rustc --version --verbose | grep -q '^release: 1\.79\.'; then
|
||||
echo CARGO_HTTP_MULTIPLEXING=false >> $GITHUB_ENV
|
||||
fi
|
||||
|
||||
- name: Install Frontend Dependencies
|
||||
working-directory: src-gui
|
||||
run: yarn install
|
||||
|
|
|
|||
|
|
@ -64,6 +64,12 @@ jobs:
|
|||
gir1.2-javascriptcoregtk-4.1=2.44.0-2 \
|
||||
gir1.2-webkit2-4.1=2.44.0-2;
|
||||
|
||||
- name: work around spurious network errors in curl 8.0
|
||||
run: |
|
||||
if rustc --version --verbose | grep -q '^release: 1\.79\.'; then
|
||||
echo CARGO_HTTP_MULTIPLEXING=false >> $GITHUB_ENV
|
||||
fi
|
||||
|
||||
- name: install frontend dependencies
|
||||
working-directory: src-gui
|
||||
run: yarn install
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue