Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:

- name: Generate coverage report
run: |
dnf install -y python-pip
dnf install -y python-pip gpg
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do we need gpg?

Copy link
Contributor Author

@ovalenti ovalenti Nov 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The first CI run in this PR had the codecov step failing with the message :

Error: The following required dependencies are missing: gpg
Please install these dependencies before using this action.

I suppose that gpg was available by default in stream9 ?

pip install gcovr
gcovr \
--xml /tmp/xml-report/ \
Expand Down
2 changes: 1 addition & 1 deletion builder/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/centos/centos:stream9
FROM quay.io/centos/centos:stream10

ARG BUILD_DIR=/install-tmp
ARG COLLECTOR_BUILDER_DEBUG
Expand Down
2 changes: 1 addition & 1 deletion builder/third_party/tbb
Submodule tbb updated from 0c0ff1 to 0cd32a
2 changes: 1 addition & 1 deletion collector/container/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi9/ubi-minimal:latest
FROM registry.access.redhat.com/ubi10/ubi-minimal:latest

ARG BUILD_TYPE=rhel
ARG ROOT_DIR=.
Expand Down
3 changes: 1 addition & 2 deletions collector/container/rhel/install.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
#!/usr/bin/env bash
set -eo pipefail

# UBI 9 requires confirmation with -y flag.
microdnf upgrade -y --nobest
microdnf install -y elfutils-libelf

microdnf clean all
# shellcheck disable=SC2046
rpm --verbose -e --nodeps $(
rpm -qa 'curl' '*rpm*' '*dnf*' '*libsolv*' '*hawkey*' 'yum*' 'libyaml*' 'libarchive*'
rpm -qa '*rpm*' '*dnf*' '*libsolv*' '*hawkey*' 'yum*' 'libyaml*' 'libarchive*'
)
rm -rf /var/cache/yum
Loading