Skip to content

Commit

Permalink
Install VC Redist 2010 manually
Browse files Browse the repository at this point in the history
  • Loading branch information
tuokri committed Nov 13, 2023
1 parent bee73af commit 185071d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/udk-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ jobs:

- run: python --version

- name: Install VC Redist 2010
run: .\tests\UDKTests\install_vcredist.ps1

- name: Run UDK build and test script
timeout-minutes: 1
shell: PowerShell
Expand Down
5 changes: 5 additions & 0 deletions tests/UDKTests/install_vcredist.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Install-Module -Name VcRedist -Force
New-Item -Path C:\Temp\VcRedist -ItemType Directory
$VcList = Get-VcList -Release "2010"
Save-VcRedist -VcList $VcList -Path C:\Temp\VcRedist
Install-VcRedist -Path C:\Temp\VcRedist -VcList $VcList -Silent

0 comments on commit 185071d

Please sign in to comment.