From f90dcbc1fd0aa70239344e926bbf6d5c66ee98d6 Mon Sep 17 00:00:00 2001 From: thelamer Date: Fri, 23 Jul 2021 13:26:21 -0400 Subject: [PATCH] support arch package dump for ci reports --- ci/ci.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/ci.py b/ci/ci.py index 3ce8a33..11f2a50 100755 --- a/ci/ci.py +++ b/ci/ci.py @@ -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")