check_updates-2.0.5 #27
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish RPM | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
permissions: | |
contents: read | |
jobs: | |
linux: | |
# The host should always be linux | |
runs-on: ubuntu-latest | |
name: Building RPMs on ${{ matrix.distro }} | |
strategy: | |
fail-fast: false | |
matrix: | |
distro: | |
- 'centos:7' | |
- 'fedora:38' | |
- 'fedora:39' | |
include: | |
- distro: 'fedora:39' | |
pre: >- | |
dnf install -y sudo perl-Module-Install perl-Readonly perl-Monitoring-Plugin perl-Perl-Critic rpm-build openssh-clients | |
- distro: 'fedora:38' | |
pre: >- | |
dnf install -y sudo perl-Module-Install perl-Readonly perl-Monitoring-Plugin perl-Perl-Critic rpm-build openssh-clients | |
- distro: 'centos:7' | |
pre: >- | |
yum install -y epel-release && | |
yum install -y sudo perl-Module-Install perl-Readonly perl-Monitoring-Plugin perl-Test-Simple perl-Perl-Critic rpm-build openssh-clients | |
steps: | |
- name: Git clone repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Build the RPM on ${{ matrix.distro }} | |
env: | |
PRE: ${{ matrix.pre }} | |
SSH_PRIVATE_KEY: ${{ secrets.SSH_PRIVATE_KEY }} | |
run: | | |
echo $PRE > ./prep-cmd.sh | |
echo "${SSH_PRIVATE_KEY}" > id_rsa | |
docker run --network host -w /check_updates -v ${PWD}:/check_updates ${{ matrix.distro }} \ | |
/bin/sh -c 'sh ./prep-cmd.sh \ | |
&& uname -a \ | |
&& whoami \ | |
&& pwd \ | |
&& perl Makefile.PL \ | |
&& make dist \ | |
&& . ./build_rpm.sh \ | |
&& echo "$RPM --> $RPMDIR" \ | |
&& echo "$SRPM --> $SRPMDIR" \ | |
&& mkdir /root/.ssh \ | |
&& chmod 700 /root/.ssh \ | |
&& cp id_rsa /root/.ssh \ | |
&& chmod 600 /root/.ssh/id_rsa \ | |
&& scp -oStrictHostKeyChecking=no $RPM [email protected]:$RPMDIR \ | |
&& scp -oStrictHostKeyChecking=no $SRPM [email protected]:$SRPMDIR \ | |
&& echo "Updating /var/www/rpm/$DIST/$RELEASE" \ | |
&& ssh -oStrictHostKeyChecking=no [email protected] "createrepo /var/www/rpm/$DIST/$RELEASE" ' |