From 747d6ae0df2426437e81ca8168cbcf4c372ca1bf Mon Sep 17 00:00:00 2001 From: Josh Tynjala Date: Fri, 24 Jan 2025 12:07:08 -0800 Subject: [PATCH] actions: exclude x86_32 lime ndlls for Windows/Linux from Haxelib bundle x86_32 is not a commonly used architecture anymore, so it doesn't make much sense to include it by default anymore. For reference, the Steam hardware survey no longer reports any 32-bit versions of Windows, macOS, or Linux. Windows 7 64-bit is currently 0.15% of Steam users, so presumably, 32-bit of any version of Windows is less than that. Windows 11 doesn't even have a 32-bit variant at all anymore. We still build x86_32 on CI, to be sure that it will continue to work if someone wants to checkout Lime and build manually. --- .github/workflows/main.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e403c1355..af08aabf5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -466,10 +466,10 @@ jobs: name: iPhone-NDLL path: ndll/iPhone/ - - uses: actions/download-artifact@v4 - with: - name: Linux-NDLL - path: ndll/Linux/ + # - uses: actions/download-artifact@v4 + # with: + # name: Linux-NDLL + # path: ndll/Linux/ - uses: actions/download-artifact@v4 with: @@ -486,10 +486,10 @@ jobs: name: MacArm64-NDLL path: ndll/MacArm64/ - - uses: actions/download-artifact@v4 - with: - name: Windows-NDLL - path: ndll/Windows/ + # - uses: actions/download-artifact@v4 + # with: + # name: Windows-NDLL + # path: ndll/Windows/ - uses: actions/download-artifact@v4 with: