summaryrefslogtreecommitdiff
path: root/.github/workflows/ci-pr.yml
diff options
context:
space:
mode:
authorDavid Spruill <[email protected]>2026-01-08 17:51:47 -0500
committerGitHub <[email protected]>2026-01-08 17:51:47 -0500
commitc5fc3ca1fd0e00a7e085ef48abfeff9c0c39817e (patch)
tree0e650a0fee8027816bbea82ca1fd9b8e3e6ee24a /.github/workflows/ci-pr.yml
parentf88e4fbbd4d2671e5cd77e4f60be7a235326797e (diff)
parented3dbe56378117a15105099870f2397671ad99ab (diff)
Merge branch 'develop' into user/daspr/kmodsamplefix
Diffstat (limited to '.github/workflows/ci-pr.yml')
-rw-r--r--.github/workflows/ci-pr.yml24
1 files changed, 12 insertions, 12 deletions
diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml
index 695d4186..0e5825d1 100644
--- a/.github/workflows/ci-pr.yml
+++ b/.github/workflows/ci-pr.yml
@@ -18,16 +18,16 @@ jobs:
runs-on: windows-2022
steps:
- name: Check out repository code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
with:
submodules: 'recursive'
- - name: Add MSBuild to PATH
- uses: microsoft/[email protected]
+ - name: Install Nuget Packages
+ run: nuget restore .\packages.config -PackagesDirectory .\packages\
- name: Get changed files
id: get-changed-files
- uses: tj-actions/changed-files@v35
+ uses: tj-actions/changed-files@v46
with:
separator: ","
@@ -41,10 +41,10 @@ jobs:
WDS_ReportFileName: _overview.${{ matrix.configuration }}.${{ matrix.platform }}
- name: Archive build logs and overview build reports
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
if: always()
with:
- name: logs
+ name: logs-${{ matrix.configuration }}-${{ matrix.platform }}
path: _logs
report:
@@ -54,20 +54,20 @@ jobs:
if: always()
steps:
- name: Check out repository code
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
- name: Retrieve overview reports
- uses: actions/download-artifact@v3
+ uses: actions/download-artifact@v4
with:
- name: logs
path: _logs
+ pattern: logs-*
+ merge-multiple: true
- name: Join and generate global reports
- run: |
- .\.github\scripts\Join-CsvReports.ps1
+ run: .\.github\scripts\Join-CsvReports.ps1
- name: Archive global overview build reports
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: logs
path: _logs/_overview.all.*