RPM builds by Linux containers
This is a simple RPM build environment based on the official CentOS Docker image.
It can build RPMs in the github actions environment, or on your local Fedora 31+/CentOS 8 machine.
On Fedora 31+ and CentOS 8, run as a non-root user
$ curl https://raw.githubusercontent.com/NethServer/nethserver-makerpms/master/install.sh | bash
There must be podman
[1] already installed though.
Requirements for building RPMs, implemented by the buildimage/makesrpm
command:
- The .spec file is in the current working directory
- Source tarballs defined in the .spec file can be downloaded via
http://
orftp://
. - If a
SHA1SUM
file exists in the current working directory, the integrity of source tarballs is checked against it. Do not put any path in theSHA1SUM
contents, only the tarball/source file name. - If the current working directory contains a
.git
directory (thus it is a git repository workdir) the specfilesource0
can be set toSource: %{name}-%{version}.tar.gz
. Then git-archive generates a tarball of the repository itself at the HEAD commit. - Other tarballs are downloaded automatically with
spectool
during the build.
If the previous build requirements are met, change directory to the repository root then run
$ makerpms *.spec
Run without any argument to get a brief help
$ makerpms
To build a package for another distribution pass the DIST
environment variable
$ DIST=.el7 makerpms *.spec
If you have a custom or development builder image to test, set the IMAGE
environment variable, e.g.:
$ IMAGE=me/myimage:test makerpms *.spec
It is possible to override the builder command, with the COMMAND
environment variable
$ COMMAND="whoami" makerpms *.spec makerpms
Additional arguments can be passed to YUM before starting the binary build, to fetch dependencies
not tracked by BuildRequires
, enable additional repositories and so on...
$ YUM_ARGS="--enablerepo=nethserver-testing" makerpms *.spec
To pass additional arguments to Podman, use PODMAN_ARGS instead
$ PODMAN_ARGS="--volume=$PWD/myrepo.conf:/etc/yum.repos.d/myrepo.conf"
To speed up the build process, the YUM cache directory contents are preserved.
Container instances share the named Podman volume makerpms-yum-cache
.
To clear the YUM cache run
$ podman volume rm makerpms-yum-cache
The builder container images are updated periodically and are available at https://github.com/nethserver/nethserver-makerpms/pkgs/container/makerpms.
ghcr.io/nethserver/makerpms:7
is the default image, fornoarch
buildsghcr.io/nethserver/makerpms:buildsys7
is the image forx86_64
builds (GCC 4)ghcr.io/nethserver/makerpms:devtoolset7
is the image forx86_64
builds with GCC 9 (devtoolset-9 from SCLo), then run makerpms in a SCLo environment, e.g. :$ COMMAND="scl enable devtoolset-9 -- makerpms" makerpms *.spec
For more info about how to build the images locally look at travis/build-container.sh
.
The following command locally builds the images with Podman (instead of Docker):
$ cat travis/build-container.sh | sed s/docker/podman/ | \ grep -v -E '\b(login|logout|push)\b' | \ NSVER=7 IMAGE_REPO=me/myimage bash
To test the local image run makerpms as follow:
$ IMAGE=me/myimage:7 makerpms *.spec
Images for NethServer 6 are available as well: just replace 7
with 6
.
The install.sh
scripts installs also the following commands:
uploadrpms
is a RPM publishing helper, specific for the NethServer community RPMs publishing policiesreleasetag
is a release workflow helper, specific for the NethServer community release guidelinesmakesrpm
builds just the.src.rpm
package.
The first time, before running uploadrpms
ensure the following command works
$ sftp [email protected]
Accept the server SSH key fingerprint when asked.
The following command uploads all the RPMs in the current working directory to the nethforge
testing
repository for NethServer version 7.8.2003
.
$ uploadrpms [email protected]:nscom/7.8.2003/nethforge-testing *.rpm
Replace 7.8.2003
with the correct NS version number. Also replace nethforge-testing
with the target repository name.
The command output might complain about some SFTP disabled commands. Ignore those messages.
The releasetag
command executes a workflow that suits only those
NethServer packages that expect a Version
tag in the form X.Y.Z
.
Some RPMs, (notably nethserver-release
) require a different version schema
and releasetag
does not suit their release workflow. Refer to their README
files for more information.
When releasetag
is invoked:
- reads the git log history and fetches related issues from the issue tracker web site.
- updates the
Version
tag and the%changelog
section in the.spec
file. - commits changes to the
.spec
file. - tags the commit (with optional GPG signature).
To fetch issues from private GitHub repositories
create a private GitHub access token.
Select the repo
scope only.
Copy it to ~/.release_tag_token
and keep its content secret:
chmod 600 ~/.release_tag_token
Tip
The private access token is useful also for public repositories because authenticated requests have an higher API rate limit
The releasetag
command is now ready for use. This is the help output:
releasetag -h Usage: releasetag [-h] [-k KEYID] [-T <x.y.z>] [<file>.spec]
Sample invocation:
releasetag -k ABCDABCD -T 1.8.5 nethserver-mail-server.spec
To force a local GPG password prompt (tested on Fedora) prepend some additional environment variables:
GPG_TTY=$(tty) GPG_AGENT_INFO="" releasetag -k ABCDABCD -T 1.8.5 nethserver-mail-server.spec
Replace ABCDABCD
with your signing GPG key. The $EDITOR
program (or git core.editor
) is opened automatically to adjust the
commit message. The same text is used as tag annotation.
Usage of -k
option is optional.
To push the tagged release to GitHub (and possibly trigger an automated build)
ensure to add the --follow-tags
option to git push
invocation. For
instance:
git push --follow-tags
To make --follow-tags
permanent run this command:
git config --global push.followTags true
github.com automatically builds RPMs and uploads
them to packages.nethserver.org
, if configured with enough environment variables
and upload secrets.
To automate the RPM build process using GitHub
- create a
.github/workflows/make-rpms.yml
file inside the source code repository hosted on GitHub. - the repository must have actions enabled and upload secrets properly set up, please contact the organization maintainer on community.nethserver.org for help.
This is an example of .github/workflows/make-rpms.yml
contents:
name: Make RPMs on: push: branches: - master - main pull_request: jobs: make-rpm: runs-on: ubuntu-22.04 env: dest_id: core docker_image: ghcr.io/nethserver/makerpms:7 steps: - uses: actions/checkout@v3 with: fetch-depth: 0 ref: ${{ github.head_ref }} - name: Generate .env file run: | cat > .env <<EOF DEST_ID=${{ env.dest_id }} NSVER=7 DOCKER_IMAGE=${{ env.docker_image }} GITHUB_ACTIONS=1 GITHUB_HEAD_REF=${{ github.head_ref }} GITHUB_REF=${{ github.ref }} GITHUB_REPOSITORY=${{ github.repository }} GITHUB_RUN_ID=${{ github.run_id }} ENDPOINTS_PACK=${{ secrets.endpoints_pack }} SECRET=${{ secrets.secret }} SECRET_URL=${{ secrets.secret_url }} AUTOBUILD_SECRET=${{ secrets.autobuild_secret }} AUTOBUILD_SECRET_URL=${{ secrets.autobuild_secret_url }} EOF - name: Run prep-sources if present. run: if test -f "prep-sources"; then ./prep-sources; fi - name: Build RPM and publish run: | echo "Starting build..." docker run --name makerpms \ --env-file .env \ --hostname $GITHUB_RUN_ID-$GITHUB_RUN_NUMBER.nethserver.org \ --volume $PWD:/srv/makerpms/src:ro \ ${{ env.docker_image }} \ makerpms-github -s *.spec echo "Build succesful." if [[ "${{ secrets.endpoints_pack }}" && "${{ secrets.secret }}" ]]; then echo "Publish configuration exists, pushing package to repo." docker commit makerpms nethserver/build docker run \ --env-file .env \ nethserver/build \ uploadrpms-github echo "Publish complete." fi rm .env
GitHub Actions builds are triggered automatically when:
- one or more commits are pushed to the master or main branch of the NethServer repository, as
stated in the
.github/workflows/make-rpms.yml
file inside theon.push.branches
key - A pull request is opened from a NethServer repository fork or it is updated by submitting new commits
After a successful build, (if secrets are available) the RPM is uploaded to packages.nethserver.org
,
according to the DEST_ID
variable value. Supported values are core
for
NethServer core packages, and forge
for NethForge packages.
Pull requests are commented automatically by nethbot
[4] with the links to available RPMs.
Also issues are commented by nethbot
if the following rules are respected in git commit messages:
- The issue reference (e.g.
NethServer/dev#1234
) is present in the merge commit of pull requests - The issue reference is added to standalone commits (should be rarely used)
The build environment supports the following variables:
DOCKER_IMAGE
DEST_ID
The Docker build image can contain different RPMs depending on the tag:
latest
(or7
) contains only dependencies to buildnethserver-*
RPMS, likenethserver-base
. It actually installs only nethserver-devtools and a basic RPM build environment without gcc compiler.buildsys7
is based on the previous environment. It also pulls in the dependencies for arch-dependant packages (likeasterisk13
orns-samba
). It actually installs thebuildsys-build
package group, which provides thegcc
compiler (version 4) among other packages.devtoolset7
: it extends the buildsys7 with the devtoolset-9 SCLo packages set. It is possible to compile with gcc version 9, by prefixing the container entry point in the following way:docker run -ti [OPTIONS] scl enable devtoolset-9 -- makerpms-travis package.spec
For instance, see the sofia-sip package.
If DEST_ID=core
:
- Builds triggered by pull requests are uploaded to the
autobuild
[2] repository - Builds triggered by commits pushed to master are uploaded to the
testing
[3] repository. If a git tag is on the last available commit, the upload destination is theupdates
repository.
If DEST_ID=forge
:
- Pull requests are uploaded to
nethforge-autobuild
- Branch builds are uploaded to
nethforge-testing
, whilst tagged builds are uploaded tonethforge
Warning
In any case, the git tag must begin with a digit
and not containing any "-" minus symbol.
For instance the tag 0.1.12
is considered
as a tagged build whilst v0.1.12-1
is not
References
[1] | Podman is a daemonless Linux container engine. https://podman.io/ |
[2] | Is a particular kind of repository in packages.nethserver.org that hosts the rpms builded automatically from github.com/features/actions. http://packages.nethserver.org/nethserver/7.9.2009/autobuild/x86_64/Packages/ |
[3] | Is a repository in packages.nethserver.org that hosts the rpms builded automatically from github.com/features/actions started form official nethserver github repository. http://packages.nethserver.org/nethserver/7.9.2009/testing/x86_64/Packages/ |
[4] | Is our bot that comments the issues and pull request with the list of automated RPMs builds. https://github.com/nethbot |