Skip to content

Commit

Permalink
Attempt to install winget, and then upgrade MSVC components.
Browse files Browse the repository at this point in the history
Signed-off-by: furby™ <[email protected]>
  • Loading branch information
furby-tm committed Oct 29, 2024
1 parent 910b336 commit afbc008
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/swift-debug-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ jobs:
branch: swift-5.10-release
tag: 5.10-RELEASE
- uses: actions/checkout@v4
- name: 🔥 Upgrade MSVC for a working STL.
- name: 💀 Install winget
shell: pwsh
run: |
Invoke-WebRequest -Uri https://aka.ms/getwinget -OutFile Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.appxbundle
Add-AppxPackage Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.appxbundle
- name: 🔥 Upgrade MSVC for a working STL
shell: pwsh
run: winget upgrade --all --accept-source-agreements --accept-package-agreements
- name: 🐙 Fetch Git Submodules
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/swift-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ jobs:
branch: swift-5.10-release
tag: 5.10-RELEASE
- uses: actions/checkout@v4
- name: 🔥 Upgrade MSVC for a working STL.
- name: 💀 Install winget
shell: pwsh
run: |
Invoke-WebRequest -Uri https://aka.ms/getwinget -OutFile Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.appxbundle
Add-AppxPackage Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.appxbundle
- name: 🔥 Upgrade MSVC for a working STL
shell: pwsh
run: winget upgrade --all --accept-source-agreements --accept-package-agreements
- name: 🐙 Fetch Git Submodules
Expand Down

0 comments on commit afbc008

Please sign in to comment.