This is an automated email from the ASF dual-hosted git repository.
laszlog pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
The following commit(s) were added to refs/heads/master by this push:
new 3be9b8220 IMPALA-12555: Point Maven cache downloader to current
location
3be9b8220 is described below
commit 3be9b82207ddf32ca48ea1b2afbc88d8dffad8a4
Author: Laszlo Gaal <[email protected]>
AuthorDate: Fri Nov 10 21:10:11 2023 +0100
IMPALA-12555: Point Maven cache downloader to current location
bin/jenkins/populate_m2_directory.py is used during bootstrap_system.sh
to prime the local .m2 cache for Maven. This preloads the majority of
common Java dependencies for faster front-end builds.
The priming bundle is generated during nightly builds of the
'all-build-options' job running on the master branch. The downloader
script then reaches out to jenkins.impala.io to locate and download the
generated tarball.
This download has been failing for the past few weeks for a banal
reason: all the jobs for the upstream precommit environment were
migrated from Ubuntu 16.04 to Ubuntu 20.04, which was also reflected in
the job names. However, bin/jenkins/populate_m2_directory.py never
received the update to point it to the current version of the
all-build-options job, and the usable builds in the old location have
all aged out of Jenkins.
This patch points the job to the right location to restore cache
priming.
Change-Id: Id494fb7f24f1364a96526b440c8a0c4b6feda588
Reviewed-on: http://gerrit.cloudera.org:8080/20698
Reviewed-by: Impala Public Jenkins <[email protected]>
Tested-by: Impala Public Jenkins <[email protected]>
---
bin/jenkins/populate_m2_directory.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/jenkins/populate_m2_directory.py
b/bin/jenkins/populate_m2_directory.py
index 13ddca148..6b8f526ce 100755
--- a/bin/jenkins/populate_m2_directory.py
+++ b/bin/jenkins/populate_m2_directory.py
@@ -23,7 +23,7 @@ import os
import shutil
from tempfile import mkdtemp
-ALL_BUILD_OPTIONS_JOB = "all-build-options-ub1604"
+ALL_BUILD_OPTIONS_JOB = "all-build-options-ub2004"
JENKINS_IMPALA_IO = "jenkins.impala.io"
M2_ARCHIVE_NAME = "m2_archive.tar.gz"