Skip to content

Commit

Permalink
Make a workflow to test adding the v17.10 build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
demianmnave committed Nov 19, 2024
1 parent e811aea commit 1e2da7a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ninja-msvc17.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# SPDX short identifier: BSL-1.0

name: ninja-msvc17
on: push

jobs:
job:
name: VS 2022 update test
runs-on: windows-2022
steps:
- name: Run vs_installer.exe
shell: pwsh
run: |
$vsinstaller = 'C:\Program Files (x86)\Microsoft Visual Studio\Installer\vs_installer.exe'
Test-Path -Path $vsinstaller | Should -Be $true
& $vsinstaller modify --add 'Microsoft.VisualStudio.Component.VC.14.40.17.10.x86.x64'

0 comments on commit 1e2da7a

Please sign in to comment.