openanolis / dragonball-sandbox

Dragonball-sandbox is a collection of Rust crates to help build custom Virtual Machine Monitors and hypervisors.
Apache License 2.0
89 stars 42 forks source link

CI: support aarch64 #22

Closed wllenyj closed 1 year ago

wllenyj commented 2 years ago

The aarch64 should be added, like this:

jobs:
  build:
      matrix:
        target:
          - x86_64-unknown-linux-gnu
          - aarch64-unknown-linux-gnu

      - uses: actions-rs/cargo@v1
        with:
          command: check
          args: --all-features --target ${{ matrix.target }}

Other relevant information: https://github.com/taiki-e/cargo-llvm-cov/pull/167

wllenyj commented 2 years ago

Static checks have been added for aarch64, also need to add unit tests for it.

https://github.com/openanolis/dragonball-sandbox/pull/163

studychao commented 1 year ago

close this since after moving to Kata repo, we will test dragonball-sandbox aarch64 UT in there