Skip to content

Commit 7de3bc9

Browse files
committed
Do not only build x86_64 packages, but also i686 and source ones
Signed-off-by: Johannes Schindelin <[email protected]>
1 parent 0180d4b commit 7de3bc9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/build-and-deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,12 @@ jobs:
182182
dir="$(cygpath -au artifacts)" &&
183183
mkdir -p "$dir" &&
184184
cd "/usr/src/$REPO/$PACKAGE_TO_BUILD" &&
185-
MAKEFLAGS=-j6 PKGEXT='.pkg.tar.xz' makepkg-mingw -s --noconfirm &&
185+
MAKEFLAGS=-j6 PKGEXT='.pkg.tar.xz' MINGW_ARCH="mingw32 mingw64" makepkg-mingw -s --noconfirm &&
186186
cp *.pkg.tar* "$dir/" &&
187187
188+
MAKEFLAGS=-j6 SRCEXT='.src.tar.gz' MINGW_ARCH=mingw64 makepkg-mingw --allsource &&
189+
cp *.src.tar* "$dir/" &&
190+
188191
# Ensure that the Git worktree is still clean
189192
ls -la &&
190193
if ! git update-index --ignore-submodules --refresh ||

0 commit comments

Comments
 (0)