Update windows-arm.yml

This commit is contained in:
TheTank20
2025-07-09 12:55:38 -05:00
committed by GitHub
parent 4de84b6439
commit ed19cf2148

View File

@@ -33,7 +33,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
include: include:
- arch: arm - arch: arm32
arch_compilename: amd64_arm arch_compilename: amd64_arm
vcpkg_arch: arm-windows-static vcpkg_arch: arm-windows-static
cmake_arch: ARM cmake_arch: ARM
@@ -78,7 +78,7 @@ jobs:
vcpkg-${{ matrix.arch }}- vcpkg-${{ matrix.arch }}-
- name: Cache OpenSSL Binaries - name: Cache OpenSSL Binaries
if: matrix.arch == 'arm' if: matrix.arch == 'arm32'
uses: actions/cache@v4 uses: actions/cache@v4
with: with:
path: | path: |
@@ -89,7 +89,7 @@ jobs:
- name: Install OpenSSL - name: Install OpenSSL
shell: pwsh shell: pwsh
run: | run: |
if ("${{ matrix.arch }}" -eq "arm") { if ("${{ matrix.arch }}" -eq "arm32") {
# For ARM32, build OpenSSL from source # For ARM32, build OpenSSL from source
$opensslVersion = "1.1.1w" $opensslVersion = "1.1.1w"
$opensslDir = "openssl-src" $opensslDir = "openssl-src"
@@ -124,7 +124,7 @@ jobs:
} }
- name: Save OpenSSL Binaries - name: Save OpenSSL Binaries
if: matrix.arch == 'arm' if: matrix.arch == 'arm32'
uses: actions/cache/save@v4 uses: actions/cache/save@v4
with: with:
path: | path: |
@@ -132,7 +132,7 @@ jobs:
key: openssl-${{ matrix.arch }}-${{ hashFiles('**/CMakeLists.txt') }} key: openssl-${{ matrix.arch }}-${{ hashFiles('**/CMakeLists.txt') }}
- name: Set OpenSSL Environment - name: Set OpenSSL Environment
if: matrix.arch == 'arm' if: matrix.arch == 'arm32'
shell: pwsh shell: pwsh
run: | run: |
echo "OPENSSL_ROOT=$env:GITHUB_WORKSPACE/openssl-install" | Out-File -FilePath $env:GITHUB_ENV -Append echo "OPENSSL_ROOT=$env:GITHUB_WORKSPACE/openssl-install" | Out-File -FilePath $env:GITHUB_ENV -Append