Skip to content

Windows ARM native build #5

Windows ARM native build

Windows ARM native build #5

name: Windows ARM native build
on:
workflow_dispatch:
jobs:
build:
runs-on: windows-2022
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
submodules: true
ref: ${{ github.head_ref }}
- name: Add msbuild to PATH
if: steps.check_submodule.outputs.trigger_build == 'true'
uses: microsoft/setup-msbuild@v1
- name: Run Build
if: steps.check_submodule.outputs.trigger_build == 'true'
run: |
Import-Module ./windows-scripts.ps1
BuildWindowsArm
shell: pwsh
- name: Upload Windows Build Artifacts
uses: actions/upload-artifact@v3
with:
name: windows-build
path: 'Whisper.net.Runtime.*/win-*/*'