1 # Library of functions shared by all CI scripts
3 skip_branch_tip_with_tag
() {
4 # Sometimes, a branch is pushed at the same time the tag that points
5 # at the same commit as the tip of the branch is pushed, and building
6 # both at the same time is a waste.
8 # When the build is triggered by a push to a tag, $CI_BRANCH will
9 # have that tagname, e.g. v2.14.0. Let's see if $CI_BRANCH is
10 # exactly at a tag, and if so, if it is different from $CI_BRANCH.
11 # That way, we can tell if we are building the tip of a branch that
12 # is tagged and we can skip the build because we won't be skipping a
15 if TAG
=$
(git describe
--exact-match "$CI_BRANCH" 2>/dev
/null
) &&
16 test "$TAG" != "$CI_BRANCH"
18 echo "$(tput setaf 2)Tip of $CI_BRANCH is exactly at $TAG$(tput sgr0)"
23 # Save some info about the current commit's tree, so we can skip the build
24 # job if we encounter the same tree again and can provide a useful info
27 echo "$(git rev-parse $CI_COMMIT^{tree}) $CI_COMMIT $CI_JOB_NUMBER $CI_JOB_ID" >>"$good_trees_file"
29 tail -1000 "$good_trees_file" >"$good_trees_file".tmp
30 mv "$good_trees_file".tmp
"$good_trees_file"
33 # Skip the build job if the same tree has already been built and tested
34 # successfully before (e.g. because the branch got rebased, changing only
35 # the commit messages).
37 if test true
= "$GITHUB_ACTIONS"
42 if ! good_tree_info
="$(grep "^$
(git rev-parse
$CI_COMMIT^
{tree
}) " "$good_trees_file")"
44 # Haven't seen this tree yet, or no cached good trees file yet.
45 # Continue the build job.
49 echo "$good_tree_info" |
{
50 read tree prev_good_commit prev_good_job_number prev_good_job_id
52 if test "$CI_JOB_ID" = "$prev_good_job_id"
55 $(tput setaf 2)Skipping build job for commit $CI_COMMIT.$(tput sgr0)
56 This commit has already been built and tested successfully by this build job.
57 To force a re-build delete the branch's cache and then hit 'Restart job'.
61 $(tput setaf 2)Skipping build job for commit $CI_COMMIT.$(tput sgr0)
62 This commit's tree has already been built and tested successfully in build job $prev_good_job_number for commit $prev_good_commit.
63 The log of that build job is available at $SYSTEM_TASKDEFINITIONSURI$SYSTEM_TEAMPROJECT/_build/results?buildId=$prev_good_job_id
64 To force a re-build delete the branch's cache and then hit 'Restart job'.
72 check_unignored_build_artifacts
()
74 ! git ls-files
--other --exclude-standard --error-unmatch \
75 -- ':/*' 2>/dev
/null ||
77 echo "$(tput setaf 1)error: found unignored build artifacts$(tput sgr0)"
82 # GitHub Action doesn't set TERM, which is required by tput
83 export TERM
=${TERM:-dumb}
85 # Clear MAKEFLAGS that may come from the outside world.
88 # Set 'exit on error' for all CI scripts to let the caller know that
89 # something went wrong.
90 # Set tracing executed commands, primarily setting environment variables
91 # and installing dependencies.
94 if test -n "$SYSTEM_COLLECTIONURI" ||
test -n "$SYSTEM_TASKDEFINITIONSURI"
96 CI_TYPE
=azure-pipelines
97 # We are running in Azure Pipelines
98 CI_BRANCH
="$BUILD_SOURCEBRANCH"
99 CI_COMMIT
="$BUILD_SOURCEVERSION"
100 CI_JOB_ID
="$BUILD_BUILDID"
101 CI_JOB_NUMBER
="$BUILD_BUILDNUMBER"
102 CI_OS_NAME
="$(echo "$AGENT_OS" | tr A-Z a-z)"
103 test darwin
!= "$CI_OS_NAME" || CI_OS_NAME
=osx
104 CI_REPO_SLUG
="$(expr "$BUILD_REPOSITORY_URI" : '.*/\([^/]*/[^/]*\)$')"
107 # use a subdirectory of the cache dir (because the file share is shared
108 # among *all* phases)
109 cache_dir
="$HOME/test-cache/$SYSTEM_PHASENAME"
111 export GIT_PROVE_OPTS
="--timer --jobs 10 --state=failed,slow,save"
112 export GIT_TEST_OPTS
="--verbose-log -x --write-junit-xml"
113 MAKEFLAGS
="$MAKEFLAGS --jobs=10"
114 test windows_nt
!= "$CI_OS_NAME" ||
115 GIT_TEST_OPTS
="--no-chain-lint --no-bin-wrappers $GIT_TEST_OPTS"
116 elif test true
= "$GITHUB_ACTIONS"
118 CI_TYPE
=github-actions
119 CI_BRANCH
="$GITHUB_REF"
120 CI_COMMIT
="$GITHUB_SHA"
121 CI_OS_NAME
="$(echo "$RUNNER_OS" | tr A-Z a-z)"
122 test macos
!= "$CI_OS_NAME" || CI_OS_NAME
=osx
123 CI_REPO_SLUG
="$GITHUB_REPOSITORY"
124 CI_JOB_ID
="$GITHUB_RUN_ID"
128 cache_dir
="$HOME/none"
130 export GIT_PROVE_OPTS
="--timer --jobs 10"
131 export GIT_TEST_OPTS
="--verbose-log -x"
132 MAKEFLAGS
="$MAKEFLAGS --jobs=10"
133 test windows
!= "$CI_OS_NAME" ||
134 GIT_TEST_OPTS
="--no-chain-lint --no-bin-wrappers $GIT_TEST_OPTS"
136 echo "Could not identify CI type" >&2
141 good_trees_file
="$cache_dir/good-trees"
143 mkdir
-p "$cache_dir"
145 test -n "${DONT_SKIP_TAGS-}" ||
146 skip_branch_tip_with_tag
149 if test -z "$jobname"
151 jobname
="$CI_OS_NAME-$CC"
155 export DEFAULT_TEST_TARGET
=prove
156 export GIT_TEST_CLONE_2GB
=true
157 export SKIP_DASHED_BUILT_INS
=YesPlease
159 case "$runs_on_pool" in
161 if test "$jobname" = "linux-gcc-default"
166 if [ "$jobname" = linux-gcc
]
168 MAKEFLAGS
="$MAKEFLAGS PYTHON_PATH=/usr/bin/python3"
170 MAKEFLAGS
="$MAKEFLAGS PYTHON_PATH=/usr/bin/python2"
173 export GIT_TEST_HTTPD
=true
175 # The Linux build installs the defined dependency versions below.
176 # The OS X build installs much more recent versions, whichever
177 # were recorded in the Homebrew database upon creating the OS X
179 # Keep that in mind when you encounter a broken OS X build!
180 export LINUX_P4_VERSION
="16.2"
181 export LINUX_GIT_LFS_VERSION
="1.5.2"
183 P4_PATH
="$HOME/custom/p4"
184 GIT_LFS_PATH
="$HOME/custom/git-lfs"
185 export PATH
="$GIT_LFS_PATH:$P4_PATH:$PATH"
188 if [ "$jobname" = osx-gcc
]
190 MAKEFLAGS
="$MAKEFLAGS PYTHON_PATH=$(which python3)"
192 MAKEFLAGS
="$MAKEFLAGS PYTHON_PATH=$(which python2)"
203 MAKEFLAGS
="$MAKEFLAGS PYTHON_PATH=/usr/bin/python3 USE_LIBPCRE2=Yes"
204 MAKEFLAGS
="$MAKEFLAGS NO_REGEX=Yes ICONV_OMITS_BOM=Yes"
205 MAKEFLAGS
="$MAKEFLAGS GIT_TEST_UTF8_LOCALE=C.UTF-8"
209 export GIT_TEST_PASSING_SANITIZE_LEAK
=true
213 MAKEFLAGS
="$MAKEFLAGS CC=${CC:-cc}"