From 97a5345f41c590dcb75b991f3714b76ac2e42ce8 Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Wed, 24 Jun 2020 02:08:03 +0200 Subject: [PATCH] Include import-chrome in CI. --- .github/workflows/gcc.yml | 2 ++ .github/workflows/msvc.yml | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/.github/workflows/gcc.yml b/.github/workflows/gcc.yml index bc1b287e..c55ef320 100644 --- a/.github/workflows/gcc.yml +++ b/.github/workflows/gcc.yml @@ -29,6 +29,8 @@ jobs: run: make -j -C update/build/unix debug release - name: Capture utility run: make -j -C capture/build/unix debug release + - name: Import-chrome utility + run: make -j -C import-chrome/build/unix debug release - name: Library run: make -j -C library/unix debug release - name: Test application diff --git a/.github/workflows/msvc.yml b/.github/workflows/msvc.yml index 852e3d64..60734a80 100644 --- a/.github/workflows/msvc.yml +++ b/.github/workflows/msvc.yml @@ -30,6 +30,10 @@ jobs: run: msbuild .\capture\build\win32\capture.vcxproj /property:Configuration=Debug /property:Platform=x64 - name: Capture utility Release run: msbuild .\capture\build\win32\capture.vcxproj /property:Configuration=Release /property:Platform=x64 + - name: Import-chrome utility Debug + run: msbuild .\import-chrome\build\win32\import-chrome.vcxproj /property:Configuration=Debug /property:Platform=x64 + - name: Import-chrome utility Release + run: msbuild .\import-chrome\build\win32\import-chrome.vcxproj /property:Configuration=Release /property:Platform=x64 - name: Library run: msbuild .\library\win32\TracyProfiler.vcxproj /property:Configuration=Release /property:Platform=x64 - name: Package binaries @@ -39,6 +43,7 @@ jobs: copy profiler\build\win32\x64\Release\Tracy.exe bin copy update\build\win32\x64\Release\update.exe bin copy capture\build\win32\x64\Release\capture.exe bin + copy import-chrome\build\win32\x64\Release\import-chrome.exe bin copy library\win32\x64\Release\TracyProfiler.dll bin\dev copy library\win32\x64\Release\TracyProfiler.lib bin\dev 7z a Tracy.7z bin