From 179b6a74f275654461aff6ddacda86a03dd9a5d8 Mon Sep 17 00:00:00 2001 From: "M. Scott Ford" Date: Fri, 26 Jul 2024 13:14:32 -0400 Subject: [PATCH 1/2] Builds for arm64 --- .github/workflows/windows.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index c959613..5aeb0e5 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -27,6 +27,7 @@ jobs: echo ${env:VCPKG_ROOT} & ${env:VCPKG_ROOT}\vcpkg install tesseract:x64-windows-static & ${env:VCPKG_ROOT}\vcpkg install tesseract:x86-windows-static + & ${env:VCPKG_ROOT}\vcpkg install tesseract:arm64-windows-static - name: Vcpkg Export shell: powershell From 40dea4b2c6b8e05d461a4037000449deef123f03 Mon Sep 17 00:00:00 2001 From: "M. Scott Ford" Date: Fri, 26 Jul 2024 15:57:53 -0400 Subject: [PATCH 2/2] Includes arm64 build output in export list --- .github/workflows/windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 5aeb0e5..622558e 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -32,8 +32,8 @@ jobs: - name: Vcpkg Export shell: powershell run: | - & ${env:VCPKG_ROOT}\vcpkg export tesseract:x64-windows-static tesseract:x86-windows-static --nuget --nuget-id="tesseract_vcpkg" --nuget-version=$env:VERSION - & ${env:VCPKG_ROOT}\vcpkg export tesseract:x64-windows-static tesseract:x86-windows-static --zip --output=tesseract_vcpkg.${env:VERSION} + & ${env:VCPKG_ROOT}\vcpkg export tesseract:x64-windows-static tesseract:x86-windows-static tesseract:arm64-windows-static --nuget --nuget-id="tesseract_vcpkg" --nuget-version=$env:VERSION + & ${env:VCPKG_ROOT}\vcpkg export tesseract:x64-windows-static tesseract:x86-windows-static tesseract:arm64-windows-static --zip --output=tesseract_vcpkg.${env:VERSION} mkdir artifacts cd artifacts xcopy ${env:VCPKG_ROOT}\*.nupkg .