mirror of
https://github.com/audacity/audacity-actions.git
synced 2025-12-10 21:08:33 -06:00
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:
commit
164839920c
@ -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');
|
||||
}
|
||||
|
||||
2
dependencies/action.yml
vendored
2
dependencies/action.yml
vendored
@ -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:
|
||||
|
||||
8
dist/configure/index.js
vendored
8
dist/configure/index.js
vendored
File diff suppressed because one or more lines are too long
Loading…
x
Reference in New Issue
Block a user