Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
9 changes: 3 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
merge_group:
schedule: # Trigger a job on default branch at 4AM PST everyday
- cron: "0 11 * * *"
- cron: '0 11 * * *'

concurrency:
group: ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
Expand Down Expand Up @@ -75,11 +75,8 @@ jobs:
- 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
# windows-11-arm runner image does not include winget-cli (see https://github.com/actions/partner-runner-images/issues/95).
force-cli-install: ${{ matrix.runner.name == 'windows-11-arm' && 'true' || 'false' }}

- name: Install LLVM ${{ matrix.llvm }}
uses: ./.github/actions/install-llvm
Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
merge_group:
schedule: # Trigger a job on default branch at 4AM PST everyday
- cron: "0 11 * * *"
- cron: '0 11 * * *'

concurrency:
group: ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
Expand Down Expand Up @@ -73,11 +73,8 @@ jobs:
- 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
# windows-11-arm runner image does not include winget-cli (see https://github.com/actions/partner-runner-images/issues/95).
force-cli-install: ${{ matrix.runner.name == 'windows-11-arm' && 'true' || 'false' }}

- name: Install LLVM ${{ matrix.llvm }}
uses: ./.github/actions/install-llvm
Expand Down
38 changes: 3 additions & 35 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:
merge_group:
schedule: # Trigger a job on default branch at 4AM PST everyday
- cron: "0 11 * * *"
- cron: '0 11 * * *'

concurrency:
group: ${{ github.workflow }}-${{ github.event.compare || github.head_ref || github.ref }}
Expand Down Expand Up @@ -71,11 +71,8 @@ jobs:
- 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
# windows-11-arm runner image does not include winget-cli (see https://github.com/actions/partner-runner-images/issues/95).
force-cli-install: ${{ matrix.runner.name == 'windows-11-arm' && 'true' || 'false' }}

- name: Install LLVM ${{ matrix.llvm }}
uses: ./.github/actions/install-llvm
Expand Down Expand Up @@ -115,35 +112,6 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Checkout windows-drivers-rs actions
uses: actions/checkout@v4
with:
repository: microsoft/windows-drivers-rs
ref: main
path: _temp/windows-drivers-rs
sparse-checkout: |
.github/actions
sparse-checkout-cone-mode: false

- name: Copy actions to workspace
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 WDK (${{ matrix.wdk }})
uses: ./.github/actions/install-wdk
with:
version: ${{ matrix.wdk }}
source: winget

- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@stable

Expand Down
Loading