Skip to content

Just disable the tests that are failing #20

Just disable the tests that are failing

Just disable the tests that are failing #20

Workflow file for this run

name: RPM Build
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: build RPM package
id: rpm
uses: UCBoulder/oit-sepe-rpmbuild@master
with:
spec_file: "merlin.spec"
additional_repos: '["epel-release", "https://labs.consol.de/repo/stable/rhel8/x86_64/labs-consol-stable.rhel8.noarch.rpm"]'
- name: print test log
if: failure()
run: tree /github/home/rpmbuild/BUILD
- name: print test log
if: failure()
run: tree /var/tmp
- name: print test log
if: failure()
run: cat /var/tmp/**/test-suite.log
- name: Upload artifact
uses: actions/[email protected]
with:
name: Binary RPM
path: ${{ steps.rpm.outputs.rpm_dir_path }}