Increase retry counts in GitHub Actions workflows (#763)

This commit is contained in:
Charlie Marsh 2022-11-15 17:21:16 -05:00 committed by GitHub
parent 9d136de55a
commit 63d63e8c12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 0 deletions

View File

@ -6,6 +6,11 @@ on:
pull_request: pull_request:
branches: [main] branches: [main]
env:
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUSTUP_MAX_RETRIES: 10
jobs: jobs:
cargo_build: cargo_build:
name: "cargo build" name: "cargo build"

View File

@ -10,6 +10,9 @@ env:
PACKAGE_NAME: flake8-to-ruff PACKAGE_NAME: flake8-to-ruff
CRATE_NAME: flake8_to_ruff CRATE_NAME: flake8_to_ruff
PYTHON_VERSION: "3.7" # to build abi3 wheels PYTHON_VERSION: "3.7" # to build abi3 wheels
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUSTUP_MAX_RETRIES: 10
jobs: jobs:
macos-x86_64: macos-x86_64:

View File

@ -12,6 +12,9 @@ concurrency:
env: env:
PACKAGE_NAME: ruff PACKAGE_NAME: ruff
PYTHON_VERSION: "3.7" # to build abi3 wheels PYTHON_VERSION: "3.7" # to build abi3 wheels
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUSTUP_MAX_RETRIES: 10
jobs: jobs:
macos-x86_64: macos-x86_64: