File tree 3 files changed +15
-0
lines changed
3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 6
6
runs-on : ubuntu-latest
7
7
name : ${{ matrix.integration }}
8
8
strategy :
9
+ # https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usage-limits
10
+ # There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
11
+ # In order to prevent overusing too much of that 60 limit, we throttle the
12
+ # number of rustfmt jobs that will run concurrently.
13
+ max-parallel : 4
9
14
fail-fast : false
10
15
matrix :
11
16
integration : [
Original file line number Diff line number Diff line change 6
6
runs-on : ubuntu-latest
7
7
name : (${{ matrix.target }}, ${{ matrix.channel }}, ${{ matrix.cfg-release-channel }})
8
8
strategy :
9
+ # https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usage-limits
10
+ # There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
11
+ # In order to prevent overusing too much of that 60 limit, we throttle the
12
+ # number of rustfmt jobs that will run concurrently.
13
+ max-parallel : 1
9
14
fail-fast : false
10
15
matrix :
11
16
target : [
Original file line number Diff line number Diff line change 6
6
runs-on : windows-latest
7
7
name : (${{ matrix.target }}, ${{ matrix.channel }})
8
8
strategy :
9
+ # https://help.github.com/en/actions/getting-started-with-github-actions/about-github-actions#usage-limits
10
+ # There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
11
+ # In order to prevent overusing too much of that 60 limit, we throttle the
12
+ # number of rustfmt jobs that will run concurrently.
13
+ max-parallel : 1
9
14
fail-fast : false
10
15
matrix :
11
16
target : [
You can’t perform that action at this time.
0 commit comments