Remove RPM builds in GitHub Workflows

We are now building RPMs via mock in Jenkins, so we don't need these RPM
build jobs in GitHub Workflows.

Signed-off-by: Major Hayden <major@redhat.com>
This commit is contained in:
Major Hayden 2020-05-22 07:36:00 -05:00 committed by Major Hayden
parent cc231e0ed1
commit ac11ea00f0

View file

@ -49,94 +49,6 @@ jobs:
- name: Send coverage to codecov.io
run: bash <(curl -s https://codecov.io/bash)
old_rpm_build:
name: "📦 RPM (golang-github-osbuild-composer)"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
fedora_release: ["31"]
container:
image: "quay.io/osbuild/osbuild-fedora${{ matrix.fedora_release }}:latest"
steps:
- name: "📥 Prepare container"
run: |
echo "fastestmirror=1" >> /etc/dnf/dnf.conf
echo "install_weak_deps=0" >> /etc/dnf/dnf.conf
rm -fv /etc/yum.repos.d/fedora*modular*
dnf -y upgrade
dnf -y install dnf-plugins-core findutils git make rpm-build rpmdevtools
- name: "🗄️ Clone the repository"
uses: actions/checkout@v2
- name: "🧱 Pre-install osbuild from updates-testing repo"
run: dnf -y --enablerepo=updates-testing install osbuild
- name: "🛒 Install RPM build dependencies"
run: dnf -y builddep golang-github-osbuild-composer.spec
- name: "🛠️ Build RPMs"
run: |
mkdir rpms
make old-srpm
cp -av rpmbuild/SRPMS/*.rpm rpms/
make old-rpm
cp -av rpmbuild/RPMS/*/*.rpm rpms/
- name: "📤 Upload artifacts"
uses: actions/upload-artifact@v1
with:
name: rpms
path: rpms/
- name: "🔎 Test RPM installation"
run: dnf -y install $(ls rpms/*.x86_64.rpm)
rpm_build:
name: "📦 RPM (osbuild-composer)"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
fedora_release: ["32", "33"]
container:
image: "quay.io/osbuild/osbuild-fedora${{ matrix.fedora_release }}:latest"
steps:
- name: "📥 Prepare container"
run: |
echo "fastestmirror=1" >> /etc/dnf/dnf.conf
echo "install_weak_deps=0" >> /etc/dnf/dnf.conf
rm -fv /etc/yum.repos.d/fedora*modular*
dnf -y upgrade
dnf -y install dnf-plugins-core findutils git make rpm-build rpmdevtools
- name: "🗄️ Clone the repository"
uses: actions/checkout@v2
- name: "🧱 Pre-install osbuild from updates-testing repo"
run: dnf -y --enablerepo=updates-testing install osbuild
- name: "🛒 Install RPM build dependencies"
run: dnf -y builddep osbuild-composer.spec
- name: "🛠️ Build RPMs"
run: |
mkdir rpms
make srpm
cp -av rpmbuild/SRPMS/*.rpm rpms/
make rpm
cp -av rpmbuild/RPMS/*/*.rpm rpms/
- name: "📤 Upload artifacts"
uses: actions/upload-artifact@v1
with:
name: rpms
path: rpms/
- name: "🔎 Test RPM installation"
run: dnf -y install $(ls rpms/*.x86_64.rpm)
koji:
name: "麹 Koji test"
runs-on: ubuntu-latest