We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fcddc4 commit 7d530c2Copy full SHA for 7d530c2
.github/workflows/build-packages.yml
@@ -48,7 +48,7 @@ jobs:
48
release:
49
- file: release-linux-x86_64
50
name: Linux64
51
- - file: release-mingw32-x86_64
+ - file: release-mingw32-x86
52
name: Windows32
53
platform: mingw32
54
@@ -81,6 +81,13 @@ jobs:
81
- name: platform
82
if: ${{ matrix.release.platform }}
83
run: echo "PLATFORM="${{ matrix.release.PLATFORM }} >> $GITHUB_ENV
84
+ - name: Windows32
85
+ if: ${{ matrix.release.name == 'Windows32' }}
86
+ run: |
87
+ dpkg --add-architecture i386
88
+ echo "CC=i686-w64-mingw32-gcc" >> $GITHUB_ENV
89
+ echo "CXX=i686-w64-mingw32-g++" >> $GITHUB_ENV
90
+ echo "ARCH=x86" >> $GITHUB_ENV
91
- name: make
92
run: USE_RESTCLIENT=1 USE_INTERNAL_LUA=1 USE_CURL_DLOPEN=0 make -j
93
- name: extract pak
0 commit comments