Skip to content

Scheduled VFS install verification #176

Scheduled VFS install verification

Scheduled VFS install verification #176

Workflow file for this run

---
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2021
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
name: Scheduled VFS install verification
# yamllint disable-line rule:truthy
on:
schedule:
- cron: '0 0 * * 5'
workflow_dispatch:
jobs:
check-ubuntu-jammy-baremetal:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # refs/tags/v4.1.7
- name: Setup services
env:
PROVIDER: libvirt
CREATE_SRIOV_VFS: true
CREATE_QAT_VFS: true
run: ./setup.sh
check-vagrant:
runs-on: vm-self-hosted
strategy:
fail-fast: false
matrix:
os: [ubuntu_focal, ubuntu_jammy, rocky_9]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # refs/tags/v4.1.7
- uses: ./.github/actions/vagrant-setup
with:
distro: ${{ matrix.os }}
- uses: ./.github/actions/vagrant-up
with:
provider: libvirt
os: ${{ matrix.os }}
enable_sriov_vfs: true