1# Library of functions shared by all CI scripts23skip_branch_tip_with_tag () {4# Sometimes, a branch is pushed at the same time the tag that points5# at the same commit as the tip of the branch is pushed, and building6# both at the same time is a waste.7#8# Travis gives a tagname e.g. v2.14.0 in $TRAVIS_BRANCH when9# the build is triggered by a push to a tag. Let's see if10# $TRAVIS_BRANCH is exactly at a tag, and if so, if it is11# different from $TRAVIS_BRANCH. That way, we can tell if12# we are building the tip of a branch that is tagged and13# we can skip the build because we won't be skipping a build14# of a tag.1516if TAG=$(git describe --exact-match "$TRAVIS_BRANCH" 2>/dev/null) &&17test "$TAG" != "$TRAVIS_BRANCH"18then19echo "$(tput setaf 2)Tip of $TRAVIS_BRANCH is exactly at $TAG$(tput sgr0)"20exit 021fi22}2324# Save some info about the current commit's tree, so we can skip the build25# job if we encounter the same tree again and can provide a useful info26# message.27save_good_tree () {28echo "$(git rev-parse $TRAVIS_COMMIT^{tree}) $TRAVIS_COMMIT $TRAVIS_JOB_NUMBER $TRAVIS_JOB_ID" >>"$good_trees_file"29# limit the file size30tail -1000 "$good_trees_file" >"$good_trees_file".tmp31mv "$good_trees_file".tmp "$good_trees_file"32}3334# Skip the build job if the same tree has already been built and tested35# successfully before (e.g. because the branch got rebased, changing only36# the commit messages).37skip_good_tree () {38if ! good_tree_info="$(grep "^$(git rev-parse $TRAVIS_COMMIT^{tree}) " "$good_trees_file")"39then40# Haven't seen this tree yet, or no cached good trees file yet.41# Continue the build job.42return43fi4445echo "$good_tree_info" | {46read tree prev_good_commit prev_good_job_number prev_good_job_id4748if test "$TRAVIS_JOB_ID" = "$prev_good_job_id"49then50cat <<-EOF51$(tput setaf 2)Skipping build job for commit $TRAVIS_COMMIT.$(tput sgr0)52This commit has already been built and tested successfully by this build job.53To force a re-build delete the branch's cache and then hit 'Restart job'.54EOF55else56cat <<-EOF57$(tput setaf 2)Skipping build job for commit $TRAVIS_COMMIT.$(tput sgr0)58This commit's tree has already been built and tested successfully in build job $prev_good_job_number for commit $prev_good_commit.59The log of that build job is available at https://travis-ci.org/$TRAVIS_REPO_SLUG/jobs/$prev_good_job_id60To force a re-build delete the branch's cache and then hit 'Restart job'.61EOF62fi63}6465exit 066}6768check_unignored_build_artifacts ()69{70! git ls-files --other --exclude-standard --error-unmatch \71-- ':/*' 2>/dev/null ||72{73echo "$(tput setaf 1)error: found unignored build artifacts$(tput sgr0)"74false75}76}7778# Set 'exit on error' for all CI scripts to let the caller know that79# something went wrong.80# Set tracing executed commands, primarily setting environment variables81# and installing dependencies.82set -ex8384cache_dir="$HOME/travis-cache"85good_trees_file="$cache_dir/good-trees"8687mkdir -p "$cache_dir"8889skip_branch_tip_with_tag90skip_good_tree9192if test -z "$jobname"93then94jobname="$TRAVIS_OS_NAME-$CC"95fi9697export DEVELOPER=198export DEFAULT_TEST_TARGET=prove99export GIT_PROVE_OPTS="--timer --jobs 3 --state=failed,slow,save"100export GIT_TEST_OPTS="--verbose-log -x --immediate"101export GIT_TEST_CLONE_2GB=YesPlease102if [ "$jobname" = linux-gcc ]; then103export CC=gcc-8104fi105106case "$jobname" in107linux-clang|linux-gcc)108export GIT_TEST_HTTPD=YesPlease109110# The Linux build installs the defined dependency versions below.111# The OS X build installs the latest available versions. Keep that112# in mind when you encounter a broken OS X build!113export LINUX_P4_VERSION="16.2"114export LINUX_GIT_LFS_VERSION="1.5.2"115116P4_PATH="$HOME/custom/p4"117GIT_LFS_PATH="$HOME/custom/git-lfs"118export PATH="$GIT_LFS_PATH:$P4_PATH:$PATH"119;;120osx-clang|osx-gcc)121# t9810 occasionally fails on Travis CI OS X122# t9816 occasionally fails with "TAP out of sequence errors" on123# Travis CI OS X124export GIT_SKIP_TESTS="t9810 t9816"125;;126GETTEXT_POISON)127export GETTEXT_POISON=YesPlease128;;129esac