Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-06-27 18:22:21 +0300
committerGitHub <noreply@github.com>2022-06-27 18:22:21 +0300
commit7f35a299c4a7abf117137b1ef03c883ab2302cf5 (patch)
tree9b13d1811d9a8d4fb517386cc195913203c18bdc /.github
parenta05285083a558db126b9f1dce7b9efd8c2a44a30 (diff)
parent2eed89f0d8bf78801963ecf3f22322a68d560ffa (diff)
Merge pull request #412 from theblackunknown/fix-windows-vcpkg
Fix building on Windows without `VCPKG_ROOT` env var set
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/msvc.yml19
1 files changed, 18 insertions, 1 deletions
diff --git a/.github/workflows/msvc.yml b/.github/workflows/msvc.yml
index 89aca044..122b754b 100644
--- a/.github/workflows/msvc.yml
+++ b/.github/workflows/msvc.yml
@@ -7,7 +7,7 @@ on:
branches: [ master ]
jobs:
- build:
+ build-with-vcpkg-integration:
runs-on: windows-2022
@@ -53,3 +53,20 @@ jobs:
- uses: actions/upload-artifact@v2
with:
path: Tracy.7z
+
+ build-without-vcpkg-integration:
+
+ runs-on: windows-2022
+
+ env:
+ VCPKG_ROOT: ''
+
+ steps:
+ - uses: actions/checkout@v2
+ - uses: microsoft/setup-msbuild@v1.0.2
+ - name: Install vcpkg dependencies
+ run: vcpkg/install_vcpkg_dependencies.bat
+ - name: Profiler GUI Release
+ run: msbuild .\profiler\build\win32\Tracy.vcxproj /property:Configuration=Release /property:Platform=x64
+ - name: Capture utility Release
+ run: msbuild .\capture\build\win32\capture.vcxproj /property:Configuration=Release /property:Platform=x64