Home
last modified time | relevance | path

Searched +full:signed +full:- +full:by (Results 1 – 6 of 6) sorted by relevance

/cloud-hypervisor/
H A DCONTRIBUTING.md4 License](https://opensource.org/licenses/Apache-2.0) and the [BSD 3
5 Clause](https://opensource.org/licenses/BSD-3-Clause) license. Individual files
12 License](https://opensource.org/licenses/Apache-2.0).
16 We follow the [Rust Style](https://github.com/rust-lang/rust/tree/HEAD/src/doc/style-guide/src)
22 Please consider creating the following hook as `.git/hooks/pre-commit` in order
29 cargo fmt -- --check || exit 1
30 cargo check --locked --all --all-targets --tests || exit 1
31 cargo clippy --locked --all --all-targets --tests -- -D warnings || exit 1
34 You will need to `chmod +x .git/hooks/pre-commit` to have it run on every
39 …chain of trust we use the [signed-off-by language](https://web.archive.org/web/20230406041855/http…
[all …]
/cloud-hypervisor/.github/workflows/
H A Ddco.yaml6 name: DCO Check ("Signed-Off-By")
7 runs-on: ubuntu-latest
9 - uses: actions/checkout@v4
10 - name: Set up Python 3.x
11 uses: actions/setup-python@v5
13 python-version: '3.x'
14 - name: Check DCO
19 pip3 install -U dco-check
20 dco-check -e "49699333+dependabot[bot]@users.noreply.github.com"
H A Dintegration-windows.yaml4 group: ${{ github.workflow }}-${{ github.ref }}
5 cancel-in-progress: true
10 runs-on: ${{ github.event_name == 'pull_request' && 'ubuntu-latest' || 'garm-jammy-16' }}
12 - name: Code checkout
16 fetch-depth: 0
17 - name: Install Docker
20 sudo apt-get update
21 sudo apt-get -y install ca-certificates curl gnupg
22 …curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyring…
23 sudo chmod a+r /usr/share/keyrings/docker-archive-keyring.gpg
[all …]
H A Dintegration-x86-64.yaml1 name: Cloud Hypervisor Tests (x86-64)
4 group: ${{ github.workflow }}-${{ github.ref }}
5 cancel-in-progress: true
9 timeout-minutes: 60
11 fail-fast: false
13 runner: ['garm-jammy', "garm-jammy-amd"]
15 name: Tests (x86-64)
16 …runs-on: ${{ github.event_name == 'pull_request' && !(matrix.runner == 'garm-jammy' && matrix.libc…
18 - name: Code checkout
19 …if: ${{ github.event_name != 'pull_request' || (matrix.runner == 'garm-jammy' && matrix.libc == 'g…
[all …]
/cloud-hypervisor/vmm/src/igvm/
H A Dmod.rs1 // SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause
10 * AMD SEV-SNP and Intel TDX.
12 * by the tool that generated the file, used by the loader to construct
15 * the file was loaded correctly and signed by the appropriate authorities.
17 * The IGVM file is generated by the tool:
18 * https://github.com/microsoft/igvm-tooling
20 * The IGVM file is parsed by the following crates:
43 fn default() -> Self { in default()
62 /// The page contains hardware-specific VP context information.
66 /// This page communicates hardware-specific secret information and the page data is unmeasured.
[all …]
/cloud-hypervisor/docs/
H A Dmshv.md3-V virtualization stack, it runs millions of Linux and Windows guests in Azure and on-premises dep…
5 Since 2020, Microsoft has been releasing open-source components to support Linux running as root pa…
8 …nel driver exposing an IOCTL interface for managing guest partitions, via a device node - /dev/mshv
14 The following components are related to MSHV support with Cloud-Hypervisor:
16 * [igvm-crates](https://github.com/microsoft/igvm) : Parsing IGVM file
18 * [mshv-crates](https://github.com/rust-vmm/mshv) : Rust crates to interact with kernel module (/de…
20 * [igvm-tooling](https://github.com/microsoft/igvm-tooling) : Tool to generate IGVM file
26 …ization stack, with support for different isolation technologies such as AMD SEV-SNP and Intel TDX.
28by the tool that generated the file, used by the loader to construct the initial guest state. The …
30 Cloud Hypervisor can be built using igvm feature flag along with mshv and/or sev-snp. IGVM only wor…
[all …]