From 3da40f046d3cef083edd08d256bafc105912c173 Mon Sep 17 00:00:00 2001 From: Quantum Date: Thu, 11 Sep 2025 01:46:37 -0400 Subject: [PATCH] [ci] idd: add job --- .github/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f4ef9667..ca47aef1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -161,6 +161,25 @@ jobs: cd host\build makensis -DBUILD_32BIT platform\Windows\installer.nsi + idd: + runs-on: windows-2022 + steps: + - uses: actions/checkout@v2 + with: + submodules: recursive + - name: Add msbuild to PATH + uses: microsoft/setup-msbuild@v2 + with: + msbuild-architecture: x64 + - name: Install NuGet packages + run: | + cd idd + nuget restore LGIdd.sln + - name: Build IDD + run: | + cd idd + msbuild.exe LGIdd.sln /t:Build /p:Configuration=Release /p:Platform=x64 + obs: runs-on: ubuntu-latest strategy: