git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
blob c5c5cb1bf8ddff26b53e8a531c41da6180d261e4 1957 bytes (raw)
name: ci/lib-travisci.sh 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
 
# Library of functions shared by all CI scripts

skip_branch_tip_with_tag () {
	# Sometimes, a branch is pushed at the same time the tag that points
	# at the same commit as the tip of the branch is pushed, and building
	# both at the same time is a waste.
	#
	# Travis gives a tagname e.g. v2.14.0 in $TRAVIS_BRANCH when
	# the build is triggered by a push to a tag.  Let's see if
	# $TRAVIS_BRANCH is exactly at a tag, and if so, if it is
	# different from $TRAVIS_BRANCH.  That way, we can tell if
	# we are building the tip of a branch that is tagged and
	# we can skip the build because we won't be skipping a build
	# of a tag.

	if TAG=$(git describe --exact-match "$TRAVIS_BRANCH" 2>/dev/null) &&
		test "$TAG" != "$TRAVIS_BRANCH"
	then
		echo "Tip of $TRAVIS_BRANCH is exactly at $TAG"
		exit 0
	fi
}

# Set 'exit on error' for all CI scripts to let the caller know that
# something went wrong.
# Set tracing executed commands, primarily setting environment variables
# and installing dependencies.
set -ex

skip_branch_tip_with_tag

if test -z "$jobname"
then
	jobname="$TRAVIS_OS_NAME-$CC"
fi

export DEVELOPER=1
export DEFAULT_TEST_TARGET=prove
export GIT_PROVE_OPTS="--timer --jobs 3 --state=failed,slow,save"
export GIT_TEST_OPTS="--verbose-log"
export GIT_TEST_CLONE_2GB=YesPlease

case "$jobname" in
linux-clang|linux-gcc)
	# The Linux build installs the defined dependency versions below.
	# The OS X build installs the latest available versions. Keep that
	# in mind when you encounter a broken OS X build!
	export LINUX_P4_VERSION="16.2"
	export LINUX_GIT_LFS_VERSION="1.5.2"

	P4_PATH="$(pwd)/custom/p4"
	GIT_LFS_PATH="$(pwd)/custom/git-lfs"
	export PATH="$GIT_LFS_PATH:$P4_PATH:$PATH"
	;;
osx-clang|osx-gcc)
	# t9810 occasionally fails on Travis CI OS X
	# t9816 occasionally fails with "TAP out of sequence errors" on
	# Travis CI OS X
	export GIT_SKIP_TESTS="t9810 t9816"
	;;
GETTEXT_POISON)
	export GETTEXT_POISON=YesPlease
	;;
esac

debug log:

solving c5c5cb1bf ...
found c5c5cb1bf in https://public-inbox.org/git/20171216125702.10901-1-szeder.dev@gmail.com/
found 4b3c5fdd0 in https://public-inbox.org/git/20171216125532.10826-1-szeder.dev@gmail.com/
found 2d0d1d613 in https://public-inbox.org/git/20171216125418.10743-2-szeder.dev@gmail.com/
found ac05f1f46 in https://80x24.org/mirrors/git.git
preparing index
index prepared:
100755 ac05f1f4694347bbd96fe1911aa33450d43ae24f	ci/lib-travisci.sh

applying [1/3] https://public-inbox.org/git/20171216125418.10743-2-szeder.dev@gmail.com/
diff --git a/ci/lib-travisci.sh b/ci/lib-travisci.sh
index ac05f1f46..2d0d1d613 100755


applying [2/3] https://public-inbox.org/git/20171216125532.10826-1-szeder.dev@gmail.com/
diff --git a/ci/lib-travisci.sh b/ci/lib-travisci.sh
index 2d0d1d613..4b3c5fdd0 100755


applying [3/3] https://public-inbox.org/git/20171216125702.10901-1-szeder.dev@gmail.com/
diff --git a/ci/lib-travisci.sh b/ci/lib-travisci.sh
index 4b3c5fdd0..c5c5cb1bf 100755

Checking patch ci/lib-travisci.sh...
Applied patch ci/lib-travisci.sh cleanly.
Checking patch ci/lib-travisci.sh...
Applied patch ci/lib-travisci.sh cleanly.
Checking patch ci/lib-travisci.sh...
Applied patch ci/lib-travisci.sh cleanly.

index at:
100755 c5c5cb1bf8ddff26b53e8a531c41da6180d261e4	ci/lib-travisci.sh

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).