CI: Add ci.yml

Run RPM build and test suite against latest fedora + virt-preview,
output and upload coverage info to codecov

Signed-off-by: Cole Robinson <crobinso@redhat.com>
This commit is contained in:
Cole Robinson 2020-07-17 15:27:08 -04:00
parent a2829e65e9
commit cd603672a8

42
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,42 @@
name: CI
on: [push, pull_request]
jobs:
# Setup latest Fedora with latest libvirt from virt-preview, build
# the RPM, verify it installs, run test suite, upload coverage
test:
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- uses: actions/checkout@v2
- name: Install RPM build deps
run: |
# glibc-langpacks-en needed to work around python locale issues
dnf install -y \
rpm-build \
dnf-plugins-core \
glibc-langpack-en \
python3-pytest python3-pytest-cov
dnf copr enable -y @virtmaint-sig/virt-preview
dnf install -y virt-install
dnf builddep -y ./virt-manager.spec
- name: Build RPM and test install
run: |
./setup.py rpm
dnf update -y noarch/*.rpm
- name: Run test suite and generate coverage report
run: |
pytest --cov --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml
flags: unittests