Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
lbr38 committed Sep 23, 2024
1 parent ac30776 commit 08d5fcd
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/build-and-test-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ jobs:
run: python3 /opt/linupdate/linupdate.py --check-updates

- name: "Run text: update specific packages"
run: python3 /opt/linupdate/linupdate.py --update "curl,wget,apache2"
run: python3 /opt/linupdate/linupdate.py --update curl,wget,apache2 --assume-yes

- name: "Run test: list available modules"
run: python3 /opt/linupdate/linupdate.py --mod-list
Expand Down Expand Up @@ -258,6 +258,9 @@ jobs:
- name: "Run test: check updates"
run: python3 /opt/linupdate/linupdate.py --check-updates

- name: "Run text: update specific packages"
run: python3 /opt/linupdate/linupdate.py --update curl,wget,apache2 --assume-yes

- name: "Run test: list available modules"
run: python3 /opt/linupdate/linupdate.py --mod-list

Expand Down Expand Up @@ -346,6 +349,9 @@ jobs:
- name: "Run test: check updates"
run: python3 /opt/linupdate/linupdate.py --check-updates

- name: "Run text: update specific packages"
run: python3 /opt/linupdate/linupdate.py --update curl,wget,apache2 --assume-yes

- name: "Run test: list available modules"
run: python3 /opt/linupdate/linupdate.py --mod-list

Expand Down Expand Up @@ -431,6 +437,9 @@ jobs:
- name: "Run test: check updates"
run: sudo python3 /opt/linupdate/linupdate.py --check-updates

- name: "Run text: update specific packages"
run: sudo python3 /opt/linupdate/linupdate.py --update curl,wget,apache2 --assume-yes

- name: "Run test: list available modules"
run: sudo python3 /opt/linupdate/linupdate.py --mod-list

Expand Down Expand Up @@ -538,6 +547,9 @@ jobs:
- name: "Run test: check updates"
run: python3 /opt/linupdate/linupdate.py --check-updates

- name: "Run text: update specific packages"
run: python3 /opt/linupdate/linupdate.py --update curl,wget,apache2 --assume-yes

- name: "Run test: print raw configuration"
run: python3 /opt/linupdate/linupdate.py --show-config

Expand Down
14 changes: 10 additions & 4 deletions .github/workflows/build-and-test-rpm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ jobs:
- name: Install package
run: dnf --nogpgcheck localinstall -y ./linupdate-test-build-${{ env.VERSION }}.noarch.rpm

- name: Launch linupdate
run: python3 /opt/linupdate/linupdate.py --check-updates
# - name: Launch linupdate
# run: python3 /opt/linupdate/linupdate.py --check-updates

# Tests some params
- name: "Run test: print help"
Expand Down Expand Up @@ -198,6 +198,9 @@ jobs:
- name: "Run test: check updates"
run: python3 /opt/linupdate/linupdate.py --check-updates

- name: "Run text: update specific packages"
run: python3 /opt/linupdate/linupdate.py --update curl,wget,apache2 --assume-yes

- name: "Run test: list available modules"
run: python3 /opt/linupdate/linupdate.py --mod-list

Expand Down Expand Up @@ -247,8 +250,8 @@ jobs:
- name: Install package
run: dnf --nogpgcheck localinstall -y ./linupdate-test-build-${{ env.VERSION }}.noarch.rpm

- name: Launch linupdate
run: python3 /opt/linupdate/linupdate.py --check-updates
# - name: Launch linupdate
# run: python3 /opt/linupdate/linupdate.py --check-updates

# Tests some params
- name: "Run test: print help"
Expand Down Expand Up @@ -293,6 +296,9 @@ jobs:
- name: "Run test: check updates"
run: python3 /opt/linupdate/linupdate.py --check-updates

- name: "Run text: update specific packages"
run: python3 /opt/linupdate/linupdate.py --update curl,wget,apache2 --assume-yes

- name: "Run test: list available modules"
run: python3 /opt/linupdate/linupdate.py --mod-list

Expand Down

0 comments on commit 08d5fcd

Please sign in to comment.