Skip to content

Commit 987e49b

Browse files
committed
Fix INTERFACE64, document gcc version
1 parent b81dc86 commit 987e49b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ jobs:
4747
choco install -y zip
4848
4949
- run: |
50+
# use an older package since the x86 package overrides the x64 one,
51+
# and ends up deleting make.exe
5052
choco install -y mingw --forcex86 --force --version=7.3.0
5153
name: Install 32-bit mingw
5254
shell: powershell
@@ -55,6 +57,9 @@ jobs:
5557
- name: Build
5658
run: |
5759
BITS=${{ matrix.BUILD_BITS }}
60+
if [ "${{ matrix.INTERFACE64 }}" == "1" ]; then
61+
export INTERFACES64=1
62+
fi
5863
if [ "$BITS" == "32" ]; then
5964
export PATH=/c/ProgramData/chocolatey/lib/mingw/tools/install/mingw32/bin:$PATH
6065
fi

0 commit comments

Comments
 (0)