axvisor 0.5.5

A lightweight type-1 hypervisor based on ArceOS
name: Test for QEMU

on:
  push:
    branches:
      - '**'
    tags-ignore:
      - '**'
  pull_request:
  workflow_call:

jobs:
  test-qemu:
    name: "Test qemu: ${{ matrix.arch }} - ${{ matrix.vmconfigs_name }}"
    strategy:
      matrix:
        include:
          - arch: aarch64
            vmconfigs: configs/vms/arceos-aarch64-qemu-smp1.toml
            vmconfigs_name: ArceOS
            vmimage_name: qemu_aarch64_arceos
          - arch: aarch64
            vmconfigs: configs/vms/linux-aarch64-qemu-smp1.toml
            vmconfigs_name: Linux
            vmimage_name: qemu_aarch64_linux
          # - arch: riscv64
          #   vmconfigs: configs/vms/arceos-riscv64-qemu-smp1.toml
          #   vmconfigs_name: ArceOS
          #   vmimage_name: qemu_arceos_riscv64
          - arch: x86_64
            vmconfigs: configs/vms/nimbos-x86_64-qemu-smp1.toml
            vmconfigs_name: NimbOS
            vmimage_name: qemu_x86_64_nimbos
      fail-fast: false
    runs-on:
      - self-hosted
      - linux
      - intel

    steps:
      - name: Clean up workspace
        run: |
          [ -d .git ] && git submodule deinit -f . || true
          [ -d .git ] && git clean -ffdx || true

      - name: Checkout
        uses: actions/checkout@v4
        with:
          clean: true
          submodules: recursive

      - name: Install dependencies
        run: cargo +stable install ostool --version ^0.8

      - name: Download images and patch vm configs
        run: |
          ls -lha .

          IMAGE_DIR="/tmp/.axvisor-images"
          IFS=',' read -ra CONFIGS <<< "${{ matrix.vmconfigs }}"
          IFS=',' read -ra IMAGES <<< "${{ matrix.vmimage_name }}"
          for i in "${!CONFIGS[@]}"; do
            img="${IMAGES[$i]}"
            img=$(echo "$img" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
            config="${CONFIGS[$i]}"
            config=$(echo "$config" | sed -e 's/^[[:space:]]*//' -e 's/[[:space:]]*$//')
            cargo xtask image download $img
            img_name="qemu-${{ matrix.arch }}"
            image_location=$(sed -n 's/^image_location[[:space:]]*=[[:space:]]*"\([^"]*\)".*/\1/p' "$config")

            case "$image_location" in
            "fs")
              echo "Filesystem storage mode - no config update needed"
              ;;
            "memory")
              sed -i 's|^kernel_path[[:space:]]*=.*|kernel_path = "'"${IMAGE_DIR}"'/'"$img"'/'"$img_name"'"|' "$config"
              echo "Memory storage mode - updating kernel_path"
              # NimbOS x86_64 requires axvm-bios for bootstrapping; ensure it exists in the extracted image
              if [[ "$img" == "qemu_x86_64_nimbos" ]]; then
                if [ ! -f "${IMAGE_DIR}/${img}/axvm-bios.bin" ]; then
                  echo "ERROR: axvm-bios.bin not found for NimbOS image at ${IMAGE_DIR}/${img}/axvm-bios.bin"
                  exit 1
                fi
              fi
              ;;
            *)
              echo "Unknown image_location: $image_location"
              exit 1
              ;;
            esac

            ROOTFS_IMG_PATH="${IMAGE_DIR}/$img/rootfs.img"

            # Check if rootfs.img exists after extraction
            if [ -f "${ROOTFS_IMG_PATH}" ]; then
              echo "Found rootfs.img, patching qemu-aarch64.toml file..."
              sed -i 's|file=${workspaceFolder}/tmp/rootfs.img|file='"${ROOTFS_IMG_PATH}"'|' ".github/workflows/qemu-${{ matrix.arch }}.toml"
              echo "Rootfs setup completed"
            else
              echo "No rootfs.img found, removing rootfs device configuration from qemu-${{ matrix.arch }}.toml..."
              sed -i '/-device/,/virtio-blk-device,drive=disk0/d' ".github/workflows/qemu-${{ matrix.arch }}.toml"
              sed -i '/-drive/,/id=disk0,if=none,format=raw,file=${workspaceFolder}\/tmp\/rootfs.img/d' ".github/workflows/qemu-${{ matrix.arch }}.toml"
              sed -i 's/root=\/dev\/vda rw //' ".github/workflows/qemu-${{ matrix.arch }}.toml"
              echo "Rootfs device configuration removed"
            fi
          done

      - name: Run tests
        run: |
          export RUST_LOG=debug
          if [ "${{ matrix.vmconfigs_name }}" = "NimbOS" ]; then
            python3 scripts/ci_run_qemu_nimbos.py -- \
              cargo xtask qemu \
              --config configs/board/qemu-${{ matrix.arch }}.toml \
              --qemu-config .github/workflows/qemu-${{ matrix.arch }}.toml \
              --vmconfigs ${{ matrix.vmconfigs }}
          else
            cargo xtask qemu \
              --config configs/board/qemu-${{ matrix.arch }}.toml \
              --qemu-config .github/workflows/qemu-${{ matrix.arch }}.toml \
              --vmconfigs ${{ matrix.vmconfigs }}
          fi