Skip to content

Commit

Permalink
Introduce COPR and COPR_RPMS variables
Browse files Browse the repository at this point in the history
  • Loading branch information
inknos committed Jan 23, 2024
1 parent eb3e6c5 commit 400e6e7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ RUN set -x && \
dnf -y distro-sync --repo copr:copr.fedorainfracloud.org:rpmsoftwaremanagement:dnf-nightly; \
fi

RUN set -x && \
if [ -n "$COPR" ] && [ -n "$COPR_RPMS" ]; then \
dnf -y copr enable $COPR; \
dnf -y install $COPR_RPMS; \
fi

# copy test suite
COPY ./dnf-behave-tests/ /opt/ci/dnf-behave-tests

Expand Down

0 comments on commit 400e6e7

Please sign in to comment.