File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change 47
47
choco install -y zip
48
48
49
49
- run : |
50
+ # use an older package since the x86 package overrides the x64 one,
51
+ # and ends up deleting make.exe
50
52
choco install -y mingw --forcex86 --force --version=7.3.0
51
53
name: Install 32-bit mingw
52
54
shell: powershell
55
57
- name : Build
56
58
run : |
57
59
BITS=${{ matrix.BUILD_BITS }}
60
+ if [ "${{ matrix.INTERFACE64 }}" == "1" ]; then
61
+ export INTERFACE64=1
62
+ fi
58
63
if [ "$BITS" == "32" ]; then
59
64
export PATH=/c/ProgramData/chocolatey/lib/mingw/tools/install/mingw32/bin:$PATH
60
65
fi
68
73
if [ "$BITS" == "32" ]; then
69
74
export PATH=/c/ProgramData/chocolatey/lib/mingw/tools/install/mingw32/bin:$PATH
70
75
fi
76
+ if [ "${{ matrix.INTERFACE64 }}" == "1" ]; then
77
+ export INTERFACE64=1
78
+ fi
71
79
tools/build_gfortran.sh
72
80
cp test.exe builds
73
81
cp test_dyn.exe builds
You can’t perform that action at this time.
0 commit comments