From 82581c9ce26abf3f1e50584863b793dc913c7f8d Mon Sep 17 00:00:00 2001 From: mcuee Date: Mon, 1 Jun 2026 20:10:02 +0800 Subject: [PATCH] Add step to build Dynamic DLLs in CI workflow --- .github/workflows/builds.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 3a8d61b..8704b08 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -88,6 +88,16 @@ jobs: /p:Platform=${{ matrix.platform }} ^ /m /nologo /v:minimal + - name: Build Dynamic DLLs + shell: cmd + working-directory: libusbK + run: | + echo === Building Dynamic DLLs === + msbuild src\dll\libusbK_dll.vcxproj ^ + /p:Configuration=Release ^ + /p:Platform=${{ matrix.platform }} ^ + /m /nologo /v:minimal + # Build kernel driver (x64 and ARM64 only) - name: Build Kernel Drivers if: matrix.platform != 'Win32'