mshv-bindings: implement send for svm_ghcb_base #137
This file contains 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
name: MSHV Build test | |
on: [pull_request, create] | |
jobs: | |
build: | |
name: Build test for MSHV crate | |
strategy: | |
matrix: | |
platform: | |
- target: x86_64-unknown-linux-gnu | |
command: build | |
- target: aarch64-unknown-linux-musl | |
command: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build binary | |
uses: houseabsolute/actions-rust-cross@v0 | |
with: | |
command: ${{ matrix.platform.command }} | |
target: ${{ matrix.platform.target }} | |
args: "--release" |