From 0b2359f601cbc676a4df45c77cd57c2c2ad24cee Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Wed, 21 Jan 2026 14:44:07 +0100 Subject: [PATCH] Do not clone ci-scripts directory. We are coping it. Signed-off-by: Petr "Stone" Hracek --- .github/workflows/build-and-push.yml | 2 +- Dockerfile.daily-tests | 7 ++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-and-push.yml b/.github/workflows/build-and-push.yml index 084c4c3..7181bbf 100644 --- a/.github/workflows/build-and-push.yml +++ b/.github/workflows/build-and-push.yml @@ -19,6 +19,6 @@ jobs: registry_username: ${{ secrets.QUAY_IMAGE_SCLORG_BUILDER_USERNAME }} registry_token: ${{ secrets.QUAY_IMAGE_SCLORG_BUILDER_TOKEN }} dockerfile: Dockerfile.daily-tests - tag: "0.1.0" + tag: "0.2.0" image_name: "upstream-daily-tests" quay_application_token: ${{ secrets.QUAY_IMAGE_SCLORG_UPDATE_DESC }} diff --git a/Dockerfile.daily-tests b/Dockerfile.daily-tests index 17dd6db..f15df4a 100644 --- a/Dockerfile.daily-tests +++ b/Dockerfile.daily-tests @@ -2,10 +2,8 @@ FROM quay.io/fedora/fedora:42 ENV WORK_DIR="/var/tmp" \ VERSION="42" \ - RELEASE="0.1.0" \ + RELEASE="0.2.0" \ DOWNSTREAM_TMT_DIR="sclorg-tmt-plans" \ - CI_REPO="https://github.com/sclorg/ci-scripts" \ - CI_REPO_NAME="ci-scripts" \ UPSTREAM_TMT_REPO="https://github.com/sclorg/sclorg-testing-farm" \ UPSTREAM_TMT_DIR="sclorg-testing-farm" \ HOME="/home/nightly" \ @@ -28,8 +26,7 @@ RUN bash "${WORK_DIR}/requirements.sh" RUN dnf install -y python3.13-pip git && \ dnf clean all -RUN git clone "${CI_REPO}" "${CI_REPO_NAME}" && \ - git clone "${UPSTREAM_TMT_REPO}" "${WORK_DIR}/${UPSTREAM_TMT_DIR}" +RUN git clone "${UPSTREAM_TMT_REPO}" "${WORK_DIR}/${UPSTREAM_TMT_DIR}" COPY . /ci-scripts WORKDIR "${HOME}"