From 4d077a75eb1f1c892e8ee42041a4de1b18453f7c Mon Sep 17 00:00:00 2001 From: Anichitei Ionel-Cristinel <49393881+ianichitei@users.noreply.github.com> Date: Fri, 31 Jul 2020 18:05:45 +0300 Subject: [PATCH] Try to fix disasmtool build --- .github/workflows/c-cpp.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml index acc5eca..840097b 100644 --- a/.github/workflows/c-cpp.yml +++ b/.github/workflows/c-cpp.yml @@ -62,4 +62,7 @@ jobs: - name: Build bddisasm and bdshemu for Win32 run: MSBuild /t:Rebuild /p:Configuration=Release /p:Platform=Win32 bddisasm.sln - name: Build disasmtool - run: MSBuild /t:Rebuild /p:Configuration=Release /p:Platform=x64 disasmtool\disasmtool.vcxproj + run: | + cd disasmtool + MSBuild /t:Rebuild /p:Configuration=Release /p:Platform=x64 disasmtool.vcxproj + cd ..