🌮 Merge GitHub Actions workflows
A single workflow allows us to re-use artifacts throughout all jobs. Also, we can fail the tests early if there's a linting issue before we spend time waiting for RPMs to build. Signed-off-by: Major Hayden <major@redhat.com>
This commit is contained in:
parent
4ad4587683
commit
4b2089bbf6
2 changed files with 68 additions and 77 deletions
77
.github/workflows/build_rpms.yml
vendored
77
.github/workflows/build_rpms.yml
vendored
|
|
@ -1,77 +0,0 @@
|
||||||
name: RPM Build
|
|
||||||
|
|
||||||
# NOTE(mhayden): Restricting branches prevents jobs from being doubled since
|
|
||||||
# a push to a pull request triggers two events.
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- "*"
|
|
||||||
push:
|
|
||||||
branches:
|
|
||||||
- master
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
rpm_build:
|
|
||||||
name: "Build RPMs"
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
fedora_release: ["31", "32", "rawhide"]
|
|
||||||
container:
|
|
||||||
image: "docker.io/library/fedora:${{ matrix.fedora_release }}"
|
|
||||||
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 rpm-build rpmdevtools
|
|
||||||
|
|
||||||
- name: Fetch .spec file
|
|
||||||
run: |
|
|
||||||
mkdir spec
|
|
||||||
# Fetch the spec file at the given commit, and prepend the commit sha to it
|
|
||||||
curl "https://raw.githubusercontent.com/osbuild/osbuild/${GITHUB_SHA}/osbuild.spec" -o osbuild.spec
|
|
||||||
echo "%global commit ${GITHUB_SHA}" | cat - osbuild.spec > spec/osbuild.spec
|
|
||||||
|
|
||||||
- name: Install RPM build dependencies
|
|
||||||
run: dnf -y builddep spec/osbuild.spec
|
|
||||||
|
|
||||||
- name: Fetch sources
|
|
||||||
run: |
|
|
||||||
mkdir sources
|
|
||||||
spectool -g spec/osbuild.spec -C sources/
|
|
||||||
|
|
||||||
- name: Build SRPM
|
|
||||||
run: |
|
|
||||||
mkdir srpms
|
|
||||||
rpmbuild -bs \
|
|
||||||
--define "_sourcedir sources" \
|
|
||||||
--define "_srcrpmdir srpms" \
|
|
||||||
spec/osbuild.spec
|
|
||||||
|
|
||||||
- name: Build RPMs
|
|
||||||
run: |
|
|
||||||
mkdir rpmbuild rpms build
|
|
||||||
rpmbuild -bb \
|
|
||||||
--define "_sourcedir `pwd`/sources" \
|
|
||||||
--define "_specdir `pwd`/spec" \
|
|
||||||
--define "_builddir `pwd`/rpmbuild" \
|
|
||||||
--define "_srcrpmdir `pwd`/srpms" \
|
|
||||||
--define "_rpmdir `pwd`/rpms" \
|
|
||||||
--define "_buildrootdir `pwd`/build" \
|
|
||||||
spec/osbuild.spec
|
|
||||||
|
|
||||||
- name: "Upload artifacts"
|
|
||||||
uses: actions/upload-artifact@v1
|
|
||||||
with:
|
|
||||||
name: rpms
|
|
||||||
path: rpms/
|
|
||||||
|
|
||||||
- name: Test RPM installation
|
|
||||||
run: |
|
|
||||||
pushd rpms/noarch
|
|
||||||
dnf -y install $(ls *.rpm)
|
|
||||||
popd
|
|
||||||
68
.github/workflows/tests.yml
vendored
68
.github/workflows/tests.yml
vendored
|
|
@ -29,6 +29,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cd osbuild
|
cd osbuild
|
||||||
pylint osbuild runners/* assemblers/* stages/* sources/*
|
pylint osbuild runners/* assemblers/* stages/* sources/*
|
||||||
|
|
||||||
unit_tests:
|
unit_tests:
|
||||||
name: "unit"
|
name: "unit"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
@ -49,3 +50,70 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
cd osbuild
|
cd osbuild
|
||||||
python3 -m unittest -v test.test_objectstore
|
python3 -m unittest -v test.test_objectstore
|
||||||
|
|
||||||
|
rpm_build:
|
||||||
|
name: "RPM build"
|
||||||
|
needs:
|
||||||
|
- pylint
|
||||||
|
- unit_tests
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
fedora_release: ["31", "32", "rawhide"]
|
||||||
|
container:
|
||||||
|
image: "docker.io/library/fedora:${{ matrix.fedora_release }}"
|
||||||
|
steps:
|
||||||
|
- name: Prepare container
|
||||||
|
run: |
|
||||||
|
echo "fastestmirror=1" >> /etc/dnf/dnf.conf
|
||||||
|
echo "install_weak_deps=0" >> /etc/dnf/dnf.conf
|
||||||
|
dnf -y upgrade
|
||||||
|
dnf -y install dnf-plugins-core rpm-build rpmdevtools
|
||||||
|
|
||||||
|
- name: Fetch .spec file
|
||||||
|
run: |
|
||||||
|
mkdir spec
|
||||||
|
# Fetch the spec file at the given commit, and prepend the commit sha to it
|
||||||
|
curl "https://raw.githubusercontent.com/osbuild/osbuild/${GITHUB_SHA}/osbuild.spec" -o osbuild.spec
|
||||||
|
echo "%global commit ${GITHUB_SHA}" | cat - osbuild.spec > spec/osbuild.spec
|
||||||
|
|
||||||
|
- name: Install RPM build dependencies
|
||||||
|
run: dnf -y builddep spec/osbuild.spec
|
||||||
|
|
||||||
|
- name: Fetch sources
|
||||||
|
run: |
|
||||||
|
mkdir sources
|
||||||
|
spectool -g spec/osbuild.spec -C sources/
|
||||||
|
|
||||||
|
- name: Build SRPM
|
||||||
|
run: |
|
||||||
|
mkdir srpms
|
||||||
|
rpmbuild -bs \
|
||||||
|
--define "_sourcedir sources" \
|
||||||
|
--define "_srcrpmdir srpms" \
|
||||||
|
spec/osbuild.spec
|
||||||
|
|
||||||
|
- name: Build RPMs
|
||||||
|
run: |
|
||||||
|
mkdir rpmbuild rpms build
|
||||||
|
rpmbuild -bb \
|
||||||
|
--define "_sourcedir `pwd`/sources" \
|
||||||
|
--define "_specdir `pwd`/spec" \
|
||||||
|
--define "_builddir `pwd`/rpmbuild" \
|
||||||
|
--define "_srcrpmdir `pwd`/srpms" \
|
||||||
|
--define "_rpmdir `pwd`/rpms" \
|
||||||
|
--define "_buildrootdir `pwd`/build" \
|
||||||
|
spec/osbuild.spec
|
||||||
|
|
||||||
|
- name: "Upload artifacts"
|
||||||
|
uses: actions/upload-artifact@v1
|
||||||
|
with:
|
||||||
|
name: rpms
|
||||||
|
path: rpms/
|
||||||
|
|
||||||
|
- name: Test RPM installation
|
||||||
|
run: |
|
||||||
|
pushd rpms/noarch
|
||||||
|
dnf -y install $(ls *.rpm)
|
||||||
|
popd
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue