File tree 2 files changed +17
-4
lines changed
2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 13
13
strategy :
14
14
fail-fast : false
15
15
matrix :
16
- os : [ubuntu-22.04, macos-13, macos-14, windows-2022 ]
16
+ os : [ubuntu-22.04, macos-13, macos-14, windows-2025 ]
17
17
release : [v3.7.0, v4.0.0, main]
18
18
runs-on : ${{ matrix.os }}
19
19
steps :
Original file line number Diff line number Diff line change @@ -60,11 +60,24 @@ runs:
60
60
fi
61
61
elif [ "${{ runner.os }}" = "macOS" ]; then
62
62
brew install ninja ccache qemu dtc
63
- elif [ "${{ runner.os }}" = "Windows" ]; then
64
- choco feature enable -n allowGlobalConfirmation
65
- choco install ninja wget
66
63
fi
67
64
65
+ - name : Install Windows dependencies
66
+ if : ${{ runner.os == 'Windows' }}
67
+ shell : pwsh
68
+ # https://stackoverflow.com/a/75794127/337201
69
+ # run: |
70
+ # $ProgressPreference = 'SilentlyContinue'
71
+ # Add-AppxPackage 'https://aka.ms/Microsoft.VCLibs.x64.14.00.Desktop.appx'
72
+ # Invoke-WebRequest -Uri https://github.com/microsoft/winget-cli/releases/download/v1.9.25180/DesktopAppInstaller_Dependencies.zip -OutFile .\DesktopAppInstaller_Dependencies.zip
73
+ # Expand-Archive .\DesktopAppInstaller_Dependencies.zip
74
+ # Add-AppxPackage .\DesktopAppInstaller_Dependencies\x64\Microsoft.VCLibs.140.00.UWPDesktop_14.0.33728.0_x64.appx
75
+ # Add-AppxPackage .\DesktopAppInstaller_Dependencies\x64\Microsoft.UI.Xaml.2.8_8.2310.30001.0_x64.appx
76
+ # Invoke-WebRequest -Uri https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle -OutFile .\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle
77
+ # Add-AppxPackage .\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle
78
+ run : |
79
+ winget install Ninja-build.Ninja oss-winget.dtc wget
80
+
68
81
- name : Initialize
69
82
working-directory : ${{ inputs.base-path }}
70
83
shell : bash
You can’t perform that action at this time.
0 commit comments