Skip to content

Scheduled VFS install verification #167

Scheduled VFS install verification

Scheduled VFS install verification #167

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-bionic-baremetal:
runs-on: ubuntu-18.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: macos-12
strategy:
fail-fast: false
matrix:
os: [centos_7, ubuntu_bionic, ubuntu_focal]
qat: [true]
include:
- os: centos_8
qat: false
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
enable_qat_vfs: ${{ matrix.qat }}