added VM::PCI_VM_DEVICE_ID and fixe bugs in VM::LINUX_USER_HOST #717
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "on": "push" | |
| "jobs": | |
| "build_run_win_64_debug": | |
| "runs-on": "windows-latest" | |
| "steps": | |
| - "uses": "actions/checkout@main" | |
| - "run": "cmd.exe /c .github\\workflows\\build_run_win_64_debug.bat" | |
| - "uses": "actions/upload-artifact@main" | |
| "with": | |
| "path": "build\\Debug\\vmaware.exe" | |
| "name": "vmaware64_debug.exe" | |
| "build_run_win_32_debug": | |
| "runs-on": "windows-latest" | |
| "steps": | |
| - "uses": "actions/checkout@main" | |
| - "run": "cmd.exe /c .github\\workflows\\build_run_win_32_debug.bat" | |
| - "uses": "actions/upload-artifact@main" | |
| "with": | |
| "path": "build\\Debug\\vmaware.exe" | |
| "name": "vmaware32_debug.exe" | |
| "build_run_win_32_release": | |
| "runs-on": "windows-latest" | |
| "steps": | |
| - "uses": "actions/checkout@main" | |
| - "run": "cmd.exe /c .github\\workflows\\build_run_win_32_release.bat" | |
| - "uses": "actions/upload-artifact@main" | |
| "with": | |
| "path": "build\\Release\\vmaware.exe" | |
| "name": "vmaware32_release.exe" | |
| "build_run_win_64_release": | |
| "runs-on": "windows-latest" | |
| "steps": | |
| - "uses": "actions/checkout@main" | |
| - "run": "cmd.exe /c .github\\workflows\\build_run_win_64_release.bat" | |
| - "uses": "actions/upload-artifact@main" | |
| "with": | |
| "path": "build\\Release\\vmaware.exe" | |
| "name": "vmaware64_release.exe" |