From 1afd745c19fe1f601af2b05989b9cc75c9b21baa Mon Sep 17 00:00:00 2001 From: Xun Li Date: Wed, 14 Aug 2024 14:50:04 -0700 Subject: [PATCH] wip --- .github/workflows/windows_build.yml | 15 +++++++-------- .vscode/settings.json | 14 +++++++++++++- 2 files changed, 20 insertions(+), 9 deletions(-) diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 8c770257..05c6931f 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -89,9 +89,15 @@ jobs: BuildTools/windows/temp key: ${{ runner.os }}-${{ matrix.platform }}-deps-cache-${{ hashFiles('BuildTools/windows/deps.md') }} + # Install innosetup + - name: Install innosetup + uses: crazy-max/ghaction-chocolatey@v3 + with: + args: install innosetup --no-progress + # Create Deps - if: steps.cache.outputs.cache-hit != 'true' - name: Create Dependencies + name: Create Dependencies shell: pwsh run: | $ErrorActionPreference = 'continue' @@ -250,13 +256,6 @@ jobs: { msbuild.exe GeoDa.vs2019.sln /t:GeoDa /property:Configuration="Release" /m /p:Platform="x64" } - # - # InnoSetup - # - Choco-Install -PackageName innosetup - # - # Binary - # if($env:platform -eq "x86") { ISCC.exe /q installer\32bit\GeoDa.iss diff --git a/.vscode/settings.json b/.vscode/settings.json index 9a6156f3..2a691fd6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -29,5 +29,17 @@ "typeinfo": "cpp", "algorithm": "cpp" }, - "C_Cpp.default.compilerPath": "/usr/bin/clang++" + "C_Cpp.default.compilerPath": "/usr/bin/clang++", + "files.exclude": { + "**/.git": true, + "**/.svn": true, + "**/.hg": true, + "**/CVS": true, + "**/.DS_Store": true, + "**/Thumbs.db": true, + "**/temp": true, + "**/build": true, + "**/debug": true, + "**/libraries": true + } }