Skip to content

Scheduled VFS install verification #180

Scheduled VFS install verification

Scheduled VFS install verification #180

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:
permissions: read-all
jobs:
check-ubuntu-jammy-baremetal:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
- name: Setup services
env:
PROVIDER: libvirt
CREATE_SRIOV_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@11bd71901bbe5b1630ceea73d27597364c9af683 # 4.2.2
- uses: ./.github/actions/vagrant-setup
with:
distro: ${{ matrix.os }}
- uses: ./.github/actions/vagrant-up
with:
provider: libvirt
os: ${{ matrix.os }}
enable_sriov_vfs: true