Skip to content

Commit

Permalink
updating to fix win-arm64 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
NoelFB committed Jul 3, 2024
1 parent f7a4239 commit 757bb55
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-libs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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' }}
Expand All @@ -91,11 +91,16 @@ jobs:
steps:
- name: Checkout
uses: actions/[email protected]
- 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:
Expand Down

0 comments on commit 757bb55

Please sign in to comment.