Skip to content

Commit

Permalink
support arch package dump for ci reports
Browse files Browse the repository at this point in the history
  • Loading branch information
thelamer committed Jul 23, 2021
1 parent 40ee765 commit f90dcbc
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ci/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,8 @@ def endtest(container,report_tests,report_containers,report_status,tag,build_ver
command = 'apt list'
elif base == 'fedora':
command = 'rpm -qa'
elif base == 'arch':
command = 'pacman -Q'
try:
info = container.exec_run(command)
packages = info[1].decode("utf-8")
Expand Down

0 comments on commit f90dcbc

Please sign in to comment.