From 3bdaa7cb5c3607632c602b35e69cba0ba3558fa1 Mon Sep 17 00:00:00 2001 From: Omair Majid Date: Wed, 16 Feb 2022 16:33:39 -0500 Subject: [PATCH] Update CI to work on RHEL 9 A new release of dotnet-bunny changes how it needs to be called. Also update rpminspect ignore list. Related: RHBZ#1986211 --- rpminspect.yaml | 9 +++++++++ tests/tests.yml | 6 +++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/rpminspect.yaml b/rpminspect.yaml index 2e7c0b7..b0d8a5b 100644 --- a/rpminspect.yaml +++ b/rpminspect.yaml @@ -2,6 +2,15 @@ inspections: # We patch upstream a lot, no need to reject patches patches: off +badfuncs: + ignore: + # TODO This removes all badfuncs checks on libcoreclr! Use + # https://github.com/rpminspect/rpminspect/issues/573 to filter + # out the specific issues when that's available + + # inet_addr: mono/s390x uses inet_addr for some internal + # debugging. See runtime/src/mono/mono/mini/cfgdump.c + - /usr/lib*/dotnet/shared/Microsoft.NETCore.App/6.0.*/libcoreclr.so runpath: # Upstream explicitly sets $ORIGIN/netcoredeps as an RPATH # See https://github.com/dotnet/core/blob/main/Documentation/self-contained-linux-apps.md diff --git a/tests/tests.yml b/tests/tests.yml index a1b43d8..56c684b 100644 --- a/tests/tests.yml +++ b/tests/tests.yml @@ -13,13 +13,13 @@ tests: - download_test_runner: dir: ./ - run: wget --no-verbose https://github.com/redhat-developer/dotnet-bunny/releases/latest/download/turkey-$(uname -m) -O turkey && chmod +x ./turkey + run: wget --no-verbose https://github.com/redhat-developer/dotnet-bunny/releases/latest/download/turkey.tar.gz && tar xf turkey.tar.gz - print_test_runner_version: dir: ./ - run: ./turkey --version + run: dotnet turkey/Turkey.dll --version - regular: dir: ./ - run: ./turkey -l={{ remote_artifacts }} dotnet-regular-tests + run: dotnet turkey/Turkey.dll -l={{ remote_artifacts }} dotnet-regular-tests required_packages: - aspnetcore-runtime-6.0 - bash-completion