File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change 23
23
steps :
24
24
- uses : actions/checkout@v2
25
25
26
- - name : Setup environment
26
+ - name : Setup MinGW native environment
27
27
uses : msys2/setup-msys2@v2
28
+ if : contains(matrix.msystem, 'MINGW')
28
29
with :
29
30
msystem : ${{ matrix.msystem }}
30
31
update : false
36
37
mingw-w64-${{ matrix.arch }}-python-fypp
37
38
mingw-w64-${{ matrix.arch }}-cmake
38
39
mingw-w64-${{ matrix.arch }}-ninja
40
+
41
+ - name : Setup msys POSIX environment
42
+ uses : msys2/setup-msys2@v2
43
+ if : contains(matrix.msystem, 'MSYS')
44
+ with :
45
+ msystem : MSYS
46
+ update : false
47
+ install : >-
48
+ git
49
+ mingw-w64-x86_64-gcc
50
+ mingw-w64-x86_64-gcc-fortran
51
+ python
52
+ python-pip
53
+ cmake
54
+ ninja
55
+
56
+ - name : Install fypp
57
+ if : contains(matrix.msystem, 'MSYS')
58
+ run : pip install fypp
39
59
40
60
- run : >-
41
61
PATH=$PATH:/mingw64/bin/ cmake
You can’t perform that action at this time.
0 commit comments