Skip to content

Commit

Permalink
Install 4.6.1 Targeting pack in action to get windows test results (#293
Browse files Browse the repository at this point in the history
)

* Do targeting pack install on windows only
  • Loading branch information
jasonleenaylor authored May 14, 2024
1 parent 35ec8db commit dd403d4
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,20 @@ jobs:
- name: Solve problems
run: Remove-Item c:\tools\php\icuuc*.dll -Force
if: matrix.os == 'windows-latest'

- name: Download 461 targeting pack
uses: suisei-cn/actions-download-file@818d6b7dc8fe73f2f924b6241f2b1134ca1377d9 # 1.6.0
id: downloadfile # Remember to give an ID if you need the output filename
with:
url: "https://download.microsoft.com/download/F/1/D/F1DEB8DB-D277-4EF9-9F48-3A65D4D8F965/NDP461-DevPack-KB3105179-ENU.exe"
target: public/
if: matrix.os == 'windows-latest'

- name: Install targeting pack
shell: cmd
working-directory: public
run: NDP461-DevPack-KB3105179-ENU.exe /q
if: matrix.os == 'windows-latest'

- name: Build
run: dotnet build --configuration Release
Expand Down

0 comments on commit dd403d4

Please sign in to comment.