blob: 4644e609187f2f381a131e292a0f53a7c0796a9b [file] [log] [blame] [edit]
FROM gerritforge/gerrit-ci-agent-bazel:debian-bookworm-latest
USER jenkins
ENV GERRIT_URL https://gerrit-review.googlesource.com/plugins
# Set of projects for cache warm-up
ENV PROJECTS \
egit \
github \
imagare \
manifest-subscription \
ai-code-review
# Maven cache warm-up for Gerrit plugins
RUN export HOME=/home/jenkins && for prj in $PROJECTS; do cd /tmp && git clone $GERRIT_URL/$prj && cd $prj && ( mvn clean install || true ); rm -Rf /tmp/$prj; done
# Remove SNAPSHOT builds from Maven repo
RUN for DIR in $(find ~/.m2/repository -type d -name '*SNAPSHOT*'); do rm -Rf $DIR; done