From cc5dbf5f558955c3d559f0a0e16c9455ca2fcc32 Mon Sep 17 00:00:00 2001 From: Yasset Perez-Riverol Date: Sat, 4 Jul 2026 22:31:01 +0100 Subject: [PATCH 1/2] test(ci): trivial change to exercise pr-validate on test-ci --- test-ci/0.0.2/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/test-ci/0.0.2/Dockerfile b/test-ci/0.0.2/Dockerfile index f38b574d5..ac782e08b 100644 --- a/test-ci/0.0.2/Dockerfile +++ b/test-ci/0.0.2/Dockerfile @@ -27,3 +27,4 @@ USER biodocker WORKDIR /data/ +# CI smoke-test: exercising pr-validate/pr-report (no functional change) From 0fd178758ba27d947863744071a999d025220b7d Mon Sep 17 00:00:00 2001 From: Yasset Perez-Riverol Date: Sat, 4 Jul 2026 22:32:31 +0100 Subject: [PATCH 2/2] test(ci): remove about.home to exercise the failure path --- test-ci/0.0.2/Dockerfile | 57 ++++++++++++++++++++-------------------- 1 file changed, 28 insertions(+), 29 deletions(-) diff --git a/test-ci/0.0.2/Dockerfile b/test-ci/0.0.2/Dockerfile index ac782e08b..daffac3e8 100644 --- a/test-ci/0.0.2/Dockerfile +++ b/test-ci/0.0.2/Dockerfile @@ -1,30 +1,29 @@ -################# BASE IMAGE ###################### -FROM debian:stable-slim - -################## METADATA ###################### -LABEL base_image="debian:stable-slim" -LABEL version="4" -LABEL software="testci" -LABEL software.version="0.0.2" -LABEL about.summary="A test container for internal testing" - -LABEL about.home="https://biocontainers.pro/" -LABEL about.license_file="gpl3+" -LABEL about.license="spdx:GPL-3.0-or-later" -LABEL about.tags="test" - - -################## MAINTAINER ###################### -MAINTAINER Olivier Sallou - -################## INSTALLATION ###################### -USER root - -RUN mkdir -p /mnt/biocontainers/test-ci -RUN echo "test is working" > /mnt/biocontainers/test-ci/test-ci.txt - -USER biodocker - - -WORKDIR /data/ +################# BASE IMAGE ###################### +FROM debian:stable-slim + +################## METADATA ###################### +LABEL base_image="debian:stable-slim" +LABEL version="4" +LABEL software="testci" +LABEL software.version="0.0.2" +LABEL about.summary="A test container for internal testing" + +LABEL about.license_file="gpl3+" +LABEL about.license="spdx:GPL-3.0-or-later" +LABEL about.tags="test" + + +################## MAINTAINER ###################### +MAINTAINER Olivier Sallou + +################## INSTALLATION ###################### +USER root + +RUN mkdir -p /mnt/biocontainers/test-ci +RUN echo "test is working" > /mnt/biocontainers/test-ci/test-ci.txt + +USER biodocker + + +WORKDIR /data/ # CI smoke-test: exercising pr-validate/pr-report (no functional change)