side note: please change the subject line for new topics; it will help
organize inboxes and list archives.

The Jenkins jobs mostly use components in the repo. In particular, the
following scrips are each used in one of our core Jenkins jobs:

bin/bootstrap_development.sh

bin/bootstrap_build.sh

bin/check-rat-report.py

docs/Makefile

bin/run_clang_tidy.sh

bin/jenkins/build-all-flag-combinations.sh

The only one that's used in a non-obvious way is the clang tidy script. It
is used as follows:

./bin/clean.sh
TIDY_BUILD_OUT="${WORKSPACE}/tidylog.txt"
touch "${TIDY_BUILD_OUT}"
if ! ./buildall.sh -skiptests -tidy -so -noclean &>"${TIDY_BUILD_OUT}"
then
  echo "tidy build failed; See ${TIDY_BUILD_OUT} for full tidy build
output. Guess:"
  grep ': error: ' "${TIDY_BUILD_OUT}"
  exit 1
else
  ./bin/clean.sh
  bin/run_clang_tidy.sh &>"${TIDY_BUILD_OUT}"
  ! grep ']' "${TIDY_BUILD_OUT}"
fi


On Mon, Jul 9, 2018 at 8:36 PM, Quanlong Huang <huang_quanl...@126.com>
wrote:

> Hi Lars, though not directly relate to this topic, we'd like to set-up
> testing like the community Jenkins.
>
>
> Are the jenkins scripts open-source? Could you share the configures of the
> Jenkins jobs? Looks like they're not in the Impala repo. I'm unable to
> browse the configures of jobs in jenkins.impala.io since I can't login.

Reply via email to