File tree 1 file changed +12
-1
lines changed
1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change 14
14
# There's a limit of 60 concurrent jobs across all repos in the rust-lang organization.
15
15
# In order to prevent overusing too much of that 60 limit, we throttle the
16
16
# number of rustfmt jobs that will run concurrently.
17
- max-parallel : 1
17
+ max-parallel : 2
18
18
fail-fast : false
19
19
matrix :
20
20
target : [
50
50
profile : minimal
51
51
default : true
52
52
53
+ - name : Add mingw32 to path for i686-gnu
54
+ run : |
55
+ echo "C:\msys64\mingw32\bin" >> $GITHUB_PATH
56
+ if : matrix.target == 'i686-pc-windows-gnu' && matrix.channel == 'nightly'
57
+ shell : bash
58
+
59
+ - name : Add mingw64 to path for x86_64-gnu
60
+ run : echo "C:\msys64\mingw64\bin" >> $GITHUB_PATH
61
+ if : matrix.target == 'x86_64-pc-windows-gnu' && matrix.channel == 'nightly'
62
+ shell : bash
63
+
53
64
- name : cargo-make
54
65
run : cargo install --force cargo-make
55
66
You can’t perform that action at this time.
0 commit comments