blob: 02411002a3ee4e93b7df16538c5dcdba5bf92dd4 [file] [log] [blame]
FROM gerritforge/gerrit-ci-agent-bazel:debian-bullseye-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