Skip to content

Add ability to use QEMU and virtiofsd from package #33

Add ability to use QEMU and virtiofsd from package

Add ability to use QEMU and virtiofsd from package #33

Workflow file for this run

name: Test install
on:
pull_request:
branches: [ "main" ]
jobs:
install:
runs-on: ubuntu-latest
strategy:
matrix:
images: ['fedora:37', 'fedora:39', 'ubuntu:22', 'centos:9']
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Run
run: bash tests/test.sh ${{ matrix.images }}
install_master:
runs-on: ubuntu-latest
strategy:
matrix:
images: ['fedora:39', 'ubuntu:22', 'centos:9']
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set QEMU_REF to master
run: |
echo 'QEMU_PACKAGE=' > bootstrap
echo 'QEMU_REF=master' >> dependencies.sh
- name: Run
run: bash tests/test.sh ${{ matrix.images }}
install_repo:
runs-on: ubuntu-latest
strategy:
matrix:
images: ['fedora:39', 'ubuntu:22']
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Disable QEMU_PACKAGE
run: |
echo 'QEMU_PACKAGE=' > bootstrap
echo 'QEMU_GIT=https://github.com/qemu/qemu.git' >> bootstrap
echo 'QEMU_REF=v9.0.0' >> bootstrap
- name: Disable VIRTIOFSD_PACKAGE
run: |
echo 'VIRTIOFSD_PACKAGE=' >> bootstrap
echo 'VIRTIOFSD_GIT=https://gitlab.com/virtio-fs/virtiofsd.git' >> bootstrap
echo 'VIRTIOFSD_REF=v1.11.0' >> bootstrap
- name: Run
run: bash tests/test.sh ${{ matrix.images }}