Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,17 @@ jobs:
shell: pwsh
run: Copy-Item -Recurse -Force _temp/windows-drivers-rs/.github/actions .github/

- name: Install Winget
uses: ./.github/actions/install-winget
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install Winget PowerShell Module
shell: pwsh
run: Install-Module -Name Microsoft.WinGet.Client -Repository PSGallery -Force

- name: Install Winget
if: matrix.runner.name == 'windows-11-arm'
shell: pwsh
run: |
Repair-WinGetPackageManager -Latest -Force
Write-Output "Winget Version: $(winget --version)"

- name: Install LLVM ${{ matrix.llvm }}
uses: ./.github/actions/install-llvm
with:
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,17 @@ jobs:
shell: pwsh
run: Copy-Item -Recurse -Force _temp/windows-drivers-rs/.github/actions .github/

- name: Install Winget
uses: ./.github/actions/install-winget
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install Winget PowerShell Module
shell: pwsh
run: Install-Module -Name Microsoft.WinGet.Client -Repository PSGallery -Force

- name: Install Winget
if: matrix.runner.name == 'windows-11-arm'
shell: pwsh
run: |
Repair-WinGetPackageManager -Latest -Force
Write-Output "Winget Version: $(winget --version)"

- name: Install LLVM ${{ matrix.llvm }}
uses: ./.github/actions/install-llvm
with:
Expand Down
17 changes: 7 additions & 10 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,17 @@ jobs:
shell: pwsh
run: Copy-Item -Recurse -Force _temp/windows-drivers-rs/.github/actions .github/

- name: Install Winget
uses: ./.github/actions/install-winget
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install Winget PowerShell Module
shell: pwsh
run: Install-Module -Name Microsoft.WinGet.Client -Repository PSGallery -Force

- name: Install Winget
if: matrix.runner.name == 'windows-11-arm'
shell: pwsh
run: |
Repair-WinGetPackageManager -Latest -Force
Write-Output "Winget Version: $(winget --version)"

- name: Install LLVM ${{ matrix.llvm }}
uses: ./.github/actions/install-llvm
with:
Expand Down Expand Up @@ -129,11 +131,6 @@ jobs:
shell: pwsh
run: Copy-Item -Recurse -Force _temp/windows-drivers-rs/.github/actions .github/

- name: Install Winget
uses: ./.github/actions/install-winget
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Install Winget PowerShell Module
shell: pwsh
run: Install-Module -Name Microsoft.WinGet.Client -Repository PSGallery -Force
Expand Down
Loading