Skip to content

Commit

Permalink
Pass configuration and platform individually to msbuild (#486)
Browse files Browse the repository at this point in the history
  • Loading branch information
ZehMatt committed Feb 9, 2024
1 parent 03fd6d8 commit ffde0f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Expand Up @@ -66,11 +66,11 @@ jobs:
- name: Build user-mode
run: |
cd msvc
msbuild.exe Zydis.sln /m /t:Rebuild '/p:Configuration="Release MD";Platform=X64'
msbuild.exe Zydis.sln /m /t:Rebuild /p:Configuration="Release MD" /p:Platform=X64
- name: Build kernel-mode
run: |
cd msvc
msbuild.exe Zydis.sln /m /t:Rebuild '/p:Configuration="Release Kernel";Platform=X64'
msbuild.exe Zydis.sln /m /t:Rebuild /p:Configuration="Release Kernel" /p:Platform=X64
amalgamated:
name: Amalgamated build (Ubuntu 22.04)
Expand Down

0 comments on commit ffde0f4

Please sign in to comment.