microsoft/openvmm
Publicmirrored fromhttps://github.com/microsoft/openvmmAvailable
Guide/src/dev_guide/tests/vmm/azure_images.md
20lines · modecode
| 1 | # Azure-hosted Test Images |
| 2 | |
| 3 | OpenVMM utilizes pre-made VHDs in order to run tests with multiple guest |
| 4 | operating systems. These images are as close to a "stock" installation as |
| 5 | possible, created from the Azure Marketplace or downloaded directly from a |
| 6 | trusted upstream source. |
| 7 | |
| 8 | These VHDs are stored in Azure Blob Storage, and are downloaded when running VMM |
| 9 | tests in CI. |
| 10 | |
| 11 | ## Downloading VHDs |
| 12 | |
| 13 | The `cargo xtask guest-test download-image` command can be used to download vhds |
| 14 | to your machine. |
| 15 | |
| 16 | By default it will download all available VHDs, however the `--vhd` option can |
| 17 | be used to only download select guests. After running it the tests can be run |
| 18 | just like any other. This command requires having |
| 19 | [AzCopy](https://learn.microsoft.com/en-us/azure/storage/common/storage-use-azcopy-v10) |
| 20 | installed. |
| 21 | |