File tree 1 file changed +0
-19
lines changed
1 file changed +0
-19
lines changed Original file line number Diff line number Diff line change 62
62
name : ${{ matrix.full_name }}
63
63
needs : [ calculate_matrix ]
64
64
runs-on : " ${{ matrix.os }}"
65
- defaults :
66
- run :
67
- shell : ${{ contains(matrix.os, 'windows') && 'msys2 {0}' || 'bash' }}
68
65
timeout-minutes : 360
69
66
env :
70
67
CI_JOB_NAME : ${{ matrix.name }}
80
77
# Check the `calculate_matrix` job to see how is the matrix defined.
81
78
include : ${{ fromJSON(needs.calculate_matrix.outputs.jobs) }}
82
79
steps :
83
- - if : contains(matrix.os, 'windows')
84
-
85
- with :
86
- # i686 jobs use mingw32. x86_64 and cross-compile jobs use mingw64.
87
- msystem : ${{ contains(matrix.name, 'i686') && 'mingw32' || 'mingw64' }}
88
- # don't try to download updates for already installed packages
89
- update : false
90
- # don't try to use the msys that comes built-in to the github runner,
91
- # so we can control what is installed (i.e. not python)
92
- release : true
93
- # Inherit the full path from the Windows environment, with MSYS2's */bin/
94
- # dirs placed in front. This lets us run Windows-native Python etc.
95
- path-type : inherit
96
- install : >
97
- make
98
-
99
80
- name : disable git crlf conversion
100
81
run : git config --global core.autocrlf false
101
82
You can’t perform that action at this time.
0 commit comments