Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
lbr38 committed Jul 22, 2024
1 parent e89ee92 commit 94a4dc4
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/build-rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,15 @@ jobs:
name: linupdate-test-build-${{ env.VERSION }}.noarch.rpm

- name: Install package
run: yum --nogpgcheck localinstall -y ./linupdate-test-build-${{ env.VERSION }}.noarch.rpm

- name: Test some params
run: |
yum update -y
yum clean all
yum --nogpgcheck localinstall -y ./linupdate-test-build-${{ env.VERSION }}.noarch.rpm
python3 /opt/linupdate/linupdate.py --help
python3 /opt/linupdate/linupdate.py --version
python3 /opt/linupdate/linupdate.py --check-updates
python3 /opt/linupdate/linupdate.py --profile container
python3 /opt/linupdate/linupdate.py --env test
# Try to install packages on latest Fedora
Expand All @@ -184,7 +189,12 @@ jobs:
name: linupdate-test-build-${{ env.VERSION }}.noarch.rpm

- name: Install package
run: dnf --nogpgcheck localinstall -y ./linupdate-test-build-${{ env.VERSION }}.noarch.rpm

- name: Test some params
run: |
dnf update -y
dnf clean all
dnf --nogpgcheck localinstall -y ./linupdate-test-build-${{ env.VERSION }}.noarch.rpm
python3 /opt/linupdate/linupdate.py --help
python3 /opt/linupdate/linupdate.py --version
python3 /opt/linupdate/linupdate.py --check-updates
python3 /opt/linupdate/linupdate.py --profile container
python3 /opt/linupdate/linupdate.py --env test

0 comments on commit 94a4dc4

Please sign in to comment.