From 757bb55c4b9ca3a7b9f86d647a8a275714c7f4bf Mon Sep 17 00:00:00 2001 From: Noel Berry Date: Tue, 2 Jul 2024 20:45:21 -0700 Subject: [PATCH] updating to fix win-arm64 builds --- .github/workflows/build-libs.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-libs.yml b/.github/workflows/build-libs.yml index 7015796..48a0f20 100644 --- a/.github/workflows/build-libs.yml +++ b/.github/workflows/build-libs.yml @@ -69,7 +69,7 @@ jobs: sudo apt-get update sudo apt-get install -y libsdl2-dev:armhf libwayland-dev:armhf libegl-dev:armhf libdrm-dev:armhf libxkbcommon-dev:armhf libpulse-dev:armhf - name: CMake Configure - if: ${{ matrix.arch != 'arm64' && matrix.arch != 'arm32' }} + if: ${{ runner.os == 'Linux' && matrix.arch != 'arm64' && matrix.arch != 'arm32' }} run: cmake -B build -S Platform - name: CMake Configure (arm64) if: ${{ runner.os == 'Linux' && matrix.arch == 'arm64' }} @@ -91,11 +91,16 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4.0.0 - - name: Download windows lib + - name: Download windows x64 lib uses: actions/download-artifact@v3 with: name: windows-latest-x64-build path: Platform/libs/x64 + - name: Download windows arm lib + uses: actions/download-artifact@v3 + with: + name: windows-latest-arm64-build + path: Platform/libs/arm64 - name: Download macos lib uses: actions/download-artifact@v3 with: