This is an automated email from the ASF dual-hosted git repository. martinzink pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
commit 2ac1f1b866432a095e8929ac8c8d6b3858f18ea4 Author: Gabor Gyimesi <[email protected]> AuthorDate: Wed Feb 18 12:49:52 2026 +0100 MINIFICPP-2721 Fix rocky linux docker image name retrieval in CI Docker update in the CI environment changed the `docker images` output format, so we need to update the image name retrieval Closes #2109 Signed-off-by: Martin Zink <[email protected]> --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 48745d3f5..6fd0ed556 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -411,7 +411,7 @@ jobs: echo '/cores/core.%e.%p' | sudo tee /proc/sys/kernel/core_pattern sudo mkdir /cores sudo chmod 777 /cores - docker run --name rocky-test --init --ulimit core=-1 --mount type=bind,source=/cores,target=/cores apacheminificpp:$(docker images | grep apacheminificpp | grep rocky | awk '{print $2}') bash -c 'cd /opt/minifi/build && make test ARGS="--timeout 300 -j8 --output-on-failure"' + docker run --name rocky-test --init --ulimit core=-1 --mount type=bind,source=/cores,target=/cores $(docker images apacheminificpp --format "{{.Repository}}:{{.Tag}}" | grep rocky | head -n1) bash -c 'cd /opt/minifi/build && make test ARGS="--timeout 300 -j8 --output-on-failure"' - name: check-cores if: ${{ failure() && steps.test.conclusion == 'failure' }} run: |
