Skip to content

Commit

Permalink
Maintain compatibility with el7
Browse files Browse the repository at this point in the history
  • Loading branch information
lbr38 committed Jul 16, 2024
1 parent 17118bd commit 120046c
Show file tree
Hide file tree
Showing 3 changed files with 206 additions and 32 deletions.
175 changes: 156 additions & 19 deletions .github/workflows/build-rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,23 @@ on:
branches: [ main ]

jobs:
build-rpm:
name: Build rpm package
#-------------------------------------------------------------------------------------------------------------------
#
# el7
#
#-------------------------------------------------------------------------------------------------------------------

# Build rpm package for el7
# Even it is build on CentOS7, package should be installable on RHEL7/8/9 based systems
build-rpm-el7:
name: Build rpm package (for el7)
runs-on: ubuntu-latest
env:
# Force to use node16 (for actions/checkout@v3)
ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
container:
image: rockylinux:9.3
image: centos:7
options: --user root
steps:
- name: Checkout
Expand All @@ -21,10 +33,35 @@ jobs:
- name: Get linupdate version
run: echo "VERSION=$(cat ${GITHUB_WORKSPACE}/version)" >> $GITHUB_ENV

- name: Install dependencies packages
- name: Install CentOS7 archive repositories
run: |
yum update -y
yum install rpmdevtools rpmlint -y
rm /etc/yum.repos.d/* -f
echo "[os]
name=os repo
baseurl=https://vault.centos.org/7.9.2009/os/x86_64/
enabled=1
gpgkey=https://vault.centos.org/RPM-GPG-KEY-CentOS-7
gpgcheck=1" > /etc/yum.repos.d/os.repo
echo "[extras]
name=extras repo
baseurl=https://vault.centos.org/7.9.2009/extras/x86_64/
enabled=1
gpgkey=https://vault.centos.org/RPM-GPG-KEY-CentOS-7
gpgcheck=1" > /etc/yum.repos.d/extras.repo
echo "[updates]
name=updates repo
baseurl=https://vault.centos.org/7.9.2009/updates/x86_64/
enabled=1
gpgkey=https://vault.centos.org/RPM-GPG-KEY-CentOS-7
gpgcheck=1" > /etc/yum.repos.d/updates.repo
yum clean all
- name: Install dependencies packages
run: yum install rpmdevtools rpmlint -y

- name: Create build environment
run: |
Expand Down Expand Up @@ -56,28 +93,30 @@ jobs:
run: |
cp ${GITHUB_WORKSPACE}/.github/workflows/packaging/rpm/spec $HOME/rpmbuild/SPECS/linupdate.spec
sed -i "s/__VERSION__/${{ env.VERSION }}/g" $HOME/rpmbuild/SPECS/linupdate.spec
sed -i "s/__RELEASEVER__/el7/g" $HOME/rpmbuild/SPECS/linupdate.spec
- name: Build package
run: |
cd $HOME/rpmbuild/SPECS
rpmbuild --target noarch -bb --quiet linupdate.spec
mv $HOME/rpmbuild/RPMS/noarch/linupdate-${{ env.VERSION }}-stable.noarch.rpm /tmp/linupdate-test-build-${{ env.VERSION }}.noarch.rpm
mv $HOME/rpmbuild/RPMS/noarch/linupdate-${{ env.VERSION }}-el7.noarch.rpm /tmp/linupdate-test-build-${{ env.VERSION }}-el7.noarch.rpm
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: linupdate-test-build-${{ env.VERSION }}.noarch.rpm
path: /tmp/linupdate-test-build-${{ env.VERSION }}.noarch.rpm
name: linupdate-test-build-${{ env.VERSION }}-el7.noarch.rpm
path: /tmp/linupdate-test-build-${{ env.VERSION }}-el7.noarch.rpm
retention-days: 1

# Try to install package on Fedora 37
install-fedora:
name: Install on Fedora 37

# Try to install packages on latest Fedora
install-fedora-el7:
name: Install on latest Fedora
needs:
build-rpm
build-rpm-el7
runs-on: ubuntu-latest
container:
image: fedora:37
image: fedora:latest
options: --user root
steps:
- name: Checkout
Expand All @@ -87,14 +126,112 @@ jobs:
run: echo "VERSION=$(cat ${GITHUB_WORKSPACE}/version)" >> $GITHUB_ENV

# Download builded deb package artifact
- name: Download artifact
- name: Download el7 artifact
uses: actions/download-artifact@v3
with:
name: linupdate-test-build-${{ env.VERSION }}.noarch.rpm
name: linupdate-test-build-${{ env.VERSION }}-el7.noarch.rpm

- name: Install package
run: |
dnf update -y
yum clean all
yum --nogpgcheck localinstall -y ./linupdate-test-build-${{ env.VERSION }}.noarch.rpm
dnf clean all
dnf --nogpgcheck localinstall -y ./linupdate-test-build-${{ env.VERSION }}-el7.noarch.rpm
#-------------------------------------------------------------------------------------------------------------------
#
# el9
#
#-------------------------------------------------------------------------------------------------------------------

# Build rpm package for el9
# build-rpm-el9:
# name: Build rpm package (for el9)
# runs-on: ubuntu-latest
# container:
# image: rockylinux:9.3
# options: --user root
# steps:
# - name: Checkout
# uses: actions/checkout@v3

# - name: Get linupdate version
# run: echo "VERSION=$(cat ${GITHUB_WORKSPACE}/version)" >> $GITHUB_ENV

# - name: Install dependencies packages
# run: |
# yum update -y
# yum install rpmdevtools rpmlint -y

# - name: Create build environment
# run: |
# mkdir -p $HOME/rpmbuild/BUILD
# mkdir -p $HOME/rpmbuild/BUILDROOT
# mkdir -p $HOME/rpmbuild/RPMS
# mkdir -p $HOME/rpmbuild/SOURCES
# mkdir -p $HOME/rpmbuild/SPECS
# mkdir -p /etc/linupdate/modules
# mkdir -p /opt/linupdate
# mkdir -p /opt/linupdate/.src/
# mkdir -p /opt/linupdate/mods-available/
# mkdir -p /opt/linupdate/mods-enabled/
# mkdir -p /opt/linupdate/agents-available/
# mkdir -p /opt/linupdate/agents-enabled/
# mkdir -p /opt/linupdate/service/
# mkdir -p /lib/systemd/system/

# - name: Copy files to include in the build
# run: |
# cp -r ${GITHUB_WORKSPACE}/src/* /opt/linupdate/.src/
# cp -r ${GITHUB_WORKSPACE}/mods-available/* /opt/linupdate/mods-available/
# cp -r ${GITHUB_WORKSPACE}/service/* /opt/linupdate/service/
# cp ${GITHUB_WORKSPACE}/linupdate /opt/linupdate/linupdate
# cp ${GITHUB_WORKSPACE}/version /opt/linupdate/version
# cp -r ${GITHUB_WORKSPACE}/service/linupdate.systemd.template /lib/systemd/system/linupdate.service

# - name: Copy spec file
# run: |
# cp ${GITHUB_WORKSPACE}/.github/workflows/packaging/rpm/spec $HOME/rpmbuild/SPECS/linupdate.spec
# sed -i "s/__VERSION__/${{ env.VERSION }}/g" $HOME/rpmbuild/SPECS/linupdate.spec
# sed -i "s/__RELEASEVER__/el9/g" $HOME/rpmbuild/SPECS/linupdate.spec

# - name: Build package
# run: |
# cd $HOME/rpmbuild/SPECS
# rpmbuild --target noarch -bb --quiet linupdate.spec
# mv $HOME/rpmbuild/RPMS/noarch/linupdate-${{ env.VERSION }}-el9.noarch.rpm /tmp/linupdate-test-build-${{ env.VERSION }}-el9.noarch.rpm

# - name: Upload artifact
# uses: actions/upload-artifact@v3
# with:
# name: linupdate-test-build-${{ env.VERSION }}-el9.noarch.rpm
# path: /tmp/linupdate-test-build-${{ env.VERSION }}-el9.noarch.rpm
# retention-days: 1

# # Try to install packages on latest Fedora
# install-fedora-el9:
# name: Install on latest Fedora
# needs:
# build-rpm-el9
# runs-on: ubuntu-latest
# container:
# image: fedora:latest
# options: --user root
# steps:
# - name: Checkout
# uses: actions/checkout@v3

# - name: Get linupdate version
# run: echo "VERSION=$(cat ${GITHUB_WORKSPACE}/version)" >> $GITHUB_ENV

# # Download builded deb package artifact
# - name: Download el9 artifact
# uses: actions/download-artifact@v3
# with:
# name: linupdate-test-build-${{ env.VERSION }}-el9.noarch.rpm

# - name: Install package
# run: |
# dnf update -y
# dnf clean all
# dnf --nogpgcheck localinstall -y ./linupdate-test-build-${{ env.VERSION }}-el9.noarch.rpm
2 changes: 1 addition & 1 deletion .github/workflows/packaging/rpm/spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Name: linupdate
Version: __VERSION__
Release: stable
Release: __RELEASEVER__
Summary: Linupdate package updater - Repomanager client side agent

BuildArch: noarch
Expand Down
61 changes: 49 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,23 @@ jobs:
path: /tmp/linupdate_${{ env.VERSION }}_all.deb
retention-days: 3

build-rpm:
name: Build rpm package

#-------------------------------------------------------------------------------------------------------------------
#
# el7
#
#-------------------------------------------------------------------------------------------------------------------

# Build rpm package for el7
build-rpm-el7:
name: Build rpm package (for el7)
runs-on: ubuntu-latest
env:
# Force to use node16 (for actions/checkout@v3)
ACTIONS_RUNNER_FORCE_ACTIONS_NODE_VERSION: node16
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true
container:
image: rockylinux:9.3
image: centos:7
options: --user root
steps:
- name: Checkout
Expand All @@ -79,10 +91,35 @@ jobs:
- name: Get linupdate version
run: echo "VERSION=$(cat ${GITHUB_WORKSPACE}/version)" >> $GITHUB_ENV

- name: Install dependencies packages
- name: Install CentOS7 archive repositories
run: |
yum update -y
yum install rpmdevtools rpmlint -y
rm /etc/yum.repos.d/* -f
echo "[os]
name=os repo
baseurl=https://vault.centos.org/7.9.2009/os/x86_64/
enabled=1
gpgkey=https://vault.centos.org/RPM-GPG-KEY-CentOS-7
gpgcheck=1" > /etc/yum.repos.d/os.repo
echo "[extras]
name=extras repo
baseurl=https://vault.centos.org/7.9.2009/extras/x86_64/
enabled=1
gpgkey=https://vault.centos.org/RPM-GPG-KEY-CentOS-7
gpgcheck=1" > /etc/yum.repos.d/extras.repo
echo "[updates]
name=updates repo
baseurl=https://vault.centos.org/7.9.2009/updates/x86_64/
enabled=1
gpgkey=https://vault.centos.org/RPM-GPG-KEY-CentOS-7
gpgcheck=1" > /etc/yum.repos.d/updates.repo
yum clean all
- name: Install dependencies packages
run: yum install rpmdevtools rpmlint -y

- name: Create build environment
run: |
Expand Down Expand Up @@ -114,18 +151,19 @@ jobs:
run: |
cp ${GITHUB_WORKSPACE}/.github/workflows/packaging/rpm/spec $HOME/rpmbuild/SPECS/linupdate.spec
sed -i "s/__VERSION__/${{ env.VERSION }}/g" $HOME/rpmbuild/SPECS/linupdate.spec
sed -i "s/__RELEASEVER__/el7/g" $HOME/rpmbuild/SPECS/linupdate.spec
- name: Build package
run: |
cd $HOME/rpmbuild/SPECS
rpmbuild --target noarch -bb --quiet linupdate.spec
mv $HOME/rpmbuild/RPMS/noarch/linupdate-${{ env.VERSION }}-stable.noarch.rpm /tmp/linupdate-${{ env.VERSION }}.noarch.rpm
mv $HOME/rpmbuild/RPMS/noarch/linupdate-${{ env.VERSION }}-el7.noarch.rpm /tmp/linupdate-${{ env.VERSION }}-el7.noarch.rpm
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: linupdate-${{ env.VERSION }}.noarch.rpm
path: /tmp/linupdate-${{ env.VERSION }}.noarch.rpm
name: linupdate-${{ env.VERSION }}-el7.noarch.rpm
path: /tmp/linupdate-${{ env.VERSION }}-el7.noarch.rpm
retention-days: 3

release:
Expand All @@ -152,7 +190,7 @@ jobs:
- name: Download rpm artifact
uses: actions/download-artifact@v3
with:
name: linupdate-${{ env.VERSION }}.noarch.rpm
name: linupdate-${{ env.VERSION }}-el7.noarch.rpm
path: ~/assets

# Create a new release
Expand All @@ -167,7 +205,6 @@ jobs:
body: |
**Changes**:
- Added compatibility for Oracle Linux OS (@Starbix #53)
draft: false
prerelease: false

Expand All @@ -179,4 +216,4 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
release_id: ${{ steps.create_release.outputs.id }}
assets_path: ~/assets
assets_path: ~/assets

0 comments on commit 120046c

Please sign in to comment.