You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
build-and-deploy: set MINGW_ARCH appropriately for i686/x86_64 builds
In the future, we want to build the packages in the appropriate git-sdk
for the given CPU architecture. Right now, we still build i686/x86_64
MINGW packages in git-sdk-64.
Let's respect the `ARCHITECTURE` environment variable (which is left
empty in the current workflow runs that want to build i686/x86_64 MINGW
packages), and set `MINGW_ARCH` appropriately when the `ARCHITECTURE`
is set to `i686` or `x86_64` (which we will do in the future).
Signed-off-by: Johannes Schindelin <[email protected]>
Copy file name to clipboardExpand all lines: .github/workflows/build-and-deploy.yml
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -241,10 +241,12 @@ jobs:
241
241
MINGW_ARCHS_TO_BUILD=$(
242
242
case "$ARCHITECTURE,$PACKAGE_TO_BUILD" in
243
243
aarch64,*) echo "clangarm64";;
244
-
*,mingw-w64-wintoast) echo "mingw32 mingw64 clangarm64";; # We're (cross-)compiling via Visual Studio
245
-
*,mingw-w64-git-credential-manager) echo "mingw32 mingw64 clangarm64";; # We're downloading the pre-built x86 artifacts and using them for all three platforms
246
-
*,mingw-w64-git-lfs) echo "mingw32 mingw64 clangarm64";; # We're downloading the pre-built artifacts from Git LFS' official release page
247
-
*) echo "mingw32 mingw64";;
244
+
x86_64,*) echo "mingw64";;
245
+
i686,*) echo "mingw32";;
246
+
,mingw-w64-wintoast) echo "mingw32 mingw64 clangarm64";; # We're (cross-)compiling via Visual Studio
247
+
,mingw-w64-git-credential-manager) echo "mingw32 mingw64 clangarm64";; # We're downloading the pre-built x86 artifacts and using them for all three platforms
248
+
,mingw-w64-git-lfs) echo "mingw32 mingw64 clangarm64";; # We're downloading the pre-built artifacts from Git LFS' official release page
0 commit comments