Add GitHub Actions support for Windows on ARM (WoA)

Merge pull request #4 from vask2108/add_woa_git_runner_actions
This commit is contained in:
Dmitry Makarenko 2025-06-17 13:53:29 +03:00 committed by GitHub
commit 164839920c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 7 additions and 5 deletions

View File

@ -29,6 +29,8 @@ function getMSVCConfiguration() {
cmakeOptions = [...cmakeOptions, '-A', 'Win32',];
} else if (hostArch == 'x64') {
cmakeOptions = [...cmakeOptions, '-A', 'x64',];
} else if (hostArch == 'arm64') {
cmakeOptions = [...cmakeOptions, '-A', 'ARM64'];
} else {
throw new Error('Invalid host architecture');
}

View File

@ -26,7 +26,7 @@ runs:
uses: actions/setup-python@v5
if: ${{ runner.os != 'Linux' }}
with:
python-version: '3.10'
python-version: '3.11'
cache: 'pip'
- uses: BSFishy/pip-action@v1
with:

File diff suppressed because one or more lines are too long