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 5268737
Show file tree
Hide file tree
Showing 3 changed files with 268 additions and 24 deletions.
166 changes: 151 additions & 15 deletions .github/workflows/build-rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,144 @@ on:
branches: [ main ]

jobs:
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: centos:7
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 CentOS7 archive repositories
run: |
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: |
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__/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 }}-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 }}-el7.noarch.rpm
path: /tmp/linupdate-test-build-${{ env.VERSION }}-el7.noarch.rpm
retention-days: 1


# Try to install packages on latest Fedora
install-fedora-el7:
name: Install on latest Fedora
needs:
build-rpm-el7
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 el7 artifact
uses: actions/download-artifact@v3
with:
name: linupdate-test-build-${{ env.VERSION }}-el7.noarch.rpm

- name: Install package
run: |
dnf update -y
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
Expand Down Expand Up @@ -56,28 +192,29 @@ 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__/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 }}-stable.noarch.rpm /tmp/linupdate-test-build-${{ env.VERSION }}.noarch.rpm
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 }}.noarch.rpm
path: /tmp/linupdate-test-build-${{ env.VERSION }}.noarch.rpm
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 package on Fedora 37
install-fedora:
name: Install on Fedora 37
# Try to install packages on latest Fedora
install-fedora-el9:
name: Install on latest Fedora
needs:
build-rpm
build-rpm-el9
runs-on: ubuntu-latest
container:
image: fedora:37
image: fedora:latest
options: --user root
steps:
- name: Checkout
Expand All @@ -87,14 +224,13 @@ jobs:
run: echo "VERSION=$(cat ${GITHUB_WORKSPACE}/version)" >> $GITHUB_ENV

# Download builded deb package artifact
- name: Download artifact
- name: Download el9 artifact
uses: actions/download-artifact@v3
with:
name: linupdate-test-build-${{ env.VERSION }}.noarch.rpm
name: linupdate-test-build-${{ env.VERSION }}-el9.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 }}-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
124 changes: 116 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,116 @@ 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: centos:7
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 CentOS7 archive repositories
run: |
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: |
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__/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 }}-el7.noarch.rpm /tmp/linupdate-${{ env.VERSION }}-el7.noarch.rpm
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: linupdate-${{ env.VERSION }}-el7.noarch.rpm
path: /tmp/linupdate-${{ env.VERSION }}-el7.noarch.rpm
retention-days: 3


#-------------------------------------------------------------------------------------------------------------------
#
# el9
#
#-------------------------------------------------------------------------------------------------------------------

# Build rpm package for el9
build-rpm-el9:
name: Build rpm package (for el9)
runs-on: ubuntu-latest
container:
image: rockylinux:9.3
Expand Down Expand Up @@ -114,18 +222,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__/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 }}-stable.noarch.rpm /tmp/linupdate-${{ env.VERSION }}.noarch.rpm
mv $HOME/rpmbuild/RPMS/noarch/linupdate-${{ env.VERSION }}-el9.noarch.rpm /tmp/linupdate-${{ env.VERSION }}-el9.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 }}-el9.noarch.rpm
path: /tmp/linupdate-${{ env.VERSION }}-el9.noarch.rpm
retention-days: 3

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

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

Expand All @@ -179,4 +287,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 5268737

Please sign in to comment.