From d346b84212a1c560c865680cec9d16d0f56baed6 Mon Sep 17 00:00:00 2001 From: Stephen Eckels Date: Mon, 28 Oct 2024 22:13:34 -0400 Subject: [PATCH 1/3] Update README.md --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index edea346..38f9ee5 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,9 @@ This project is largely split between it's C++ and Rust components. The C driver * Rust log symbolicator to symbolicate C++ driver stack traces. Doesn't use DIA SDK. # Installation & Setup -Instal VS2022 + Windows SDK + Windows DDK. In that order, with matching SDK and WDK build numbers. See https://learn.microsoft.com/en-us/windows-hardware/drivers/download-the-wdk#download-icon-for-visual-studio-step-1-install-visual-studio-2022 +Setup Visual Studio w/ DDK +* Instal VS2022 + Windows SDK + Windows DDK. In that order, with matching SDK and WDK build numbers. See https://learn.microsoft.com/en-us/windows-hardware/drivers/download-the-wdk#download-icon-for-visual-studio-step-1-install-visual-studio-2022 +* Change STrace driver project Windows SDK settings to the installed WDK version. STrace->Properties->General->Windows SDK Version (Your WDK build number). Build the driver and cli, move the files to the same folder as the script, then run the powershell script in install folder as admin: ``` From d8022d4778b0487ef3c3ba6f3b0830e9cc613d53 Mon Sep 17 00:00:00 2001 From: Stephen Eckels Date: Mon, 28 Oct 2024 22:18:24 -0400 Subject: [PATCH 2/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 38f9ee5..71c5b72 100644 --- a/README.md +++ b/README.md @@ -30,7 +30,7 @@ This project is largely split between it's C++ and Rust components. The C driver # Installation & Setup Setup Visual Studio w/ DDK -* Instal VS2022 + Windows SDK + Windows DDK. In that order, with matching SDK and WDK build numbers. See https://learn.microsoft.com/en-us/windows-hardware/drivers/download-the-wdk#download-icon-for-visual-studio-step-1-install-visual-studio-2022 +* Install VS2022 + Windows SDK + Windows DDK. In that order, with matching SDK and WDK build numbers. See https://learn.microsoft.com/en-us/windows-hardware/drivers/download-the-wdk#download-icon-for-visual-studio-step-1-install-visual-studio-2022 * Change STrace driver project Windows SDK settings to the installed WDK version. STrace->Properties->General->Windows SDK Version (Your WDK build number). Build the driver and cli, move the files to the same folder as the script, then run the powershell script in install folder as admin: From 7e2d56c23ec89566fd82667b7f220037480a4e6b Mon Sep 17 00:00:00 2001 From: Stephen Eckels Date: Mon, 28 Oct 2024 22:23:38 -0400 Subject: [PATCH 3/3] Update build.yml Update action-gh-release --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f5bef12..7cf78d1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -70,12 +70,12 @@ jobs: Compress-Archive -DestinationPath STrace.zip -Path Rust, C, install -CompressionLevel Fastest Compress-Archive -DestinationPath PDBReSym.zip -Path Rust\PDBReSym\target\release\PDBReSym.exe -CompressionLevel Fastest - name: Release STrace - uses: softprops/action-gh-release@v0.1.12 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: files: STrace.zip - name: Release PDBReSym - uses: softprops/action-gh-release@v0.1.12 + uses: softprops/action-gh-release@v2 if: startsWith(github.ref, 'refs/tags/') with: files: PDBReSym.zip