diff --git a/.appveyor.yml b/.appveyor.yml index b68f34b0..f9d57c63 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -15,11 +15,13 @@ build_script: - cmd: msbuild .\update\build\win32\update.vcxproj - cmd: msbuild .\profiler\build\win32\Tracy.vcxproj - cmd: msbuild .\capture\build\win32\capture.vcxproj + - cmd: msbuild .\csvexport\build\win32\csvexport.vcxproj - cmd: msbuild .\library\win32\TracyProfiler.vcxproj /property:Configuration=Release - sh: sudo apt-get update && sudo apt-get -y install libglfw3-dev libgtk2.0-dev libcapstone-dev - sh: make -C update/build/unix debug release - sh: make -C profiler/build/unix debug release - sh: make -C capture/build/unix debug release + - sh: make -C csvexport/build/unix debug release - sh: make -C library/unix debug release - sh: make -C test - sh: make -C test clean diff --git a/.github/workflows/gcc.yml b/.github/workflows/gcc.yml index 1d6a952f..7a71bfef 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: Csvexport utility + run: make -j -C csvexport/build/unix debug release - name: Import-chrome utility run: make -j -C import-chrome/build/unix debug release - name: Library diff --git a/.github/workflows/msvc.yml b/.github/workflows/msvc.yml index 60734a80..8df3bc17 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: Csvexport utility Debug + run: msbuild .\csvexport\build\win32\csvexport.vcxproj /property:Configuration=Debug /property:Platform=x64 + - name: Csvexport utility Release + run: msbuild .\csvexport\build\win32\csvexport.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