27 # The Linux build installs the defined dependency versions below.
28 # The OS X build installs the latest available versions. Keep that
29 # in mind when you encounter a broken OS X build!
30 - LINUX_P4_VERSION="16.2"
31 - LINUX_GIT_LFS_VERSION="1.5.2"
32 - DEFAULT_TEST_TARGET=prove
33 - GIT_PROVE_OPTS="--timer --jobs 3 --state=failed,slow,save"
34 - GIT_TEST_OPTS="--verbose-log"
35 - GIT_TEST_CLONE_2GB=YesPlease
36 # t9810 occasionally fails on Travis CI OS X
37 # t9816 occasionally fails with "TAP out of sequence errors" on Travis CI OS X
38 - GIT_SKIP_TESTS="t9810 t9816"
50 test "$TRAVIS_REPO_SLUG" != "git/git" ||
51 ci/run-windows-build.sh $TRAVIS_BRANCH $(git rev-parse HEAD)
58 - docker pull daald/ubuntu32:xenial
64 --env DEFAULT_TEST_TARGET
67 --env GIT_TEST_CLONE_2GB
68 --volume "${PWD}:/usr/src/git"
70 /usr/src/git/ci/run-linux32-build.sh $(id -u $USER)
71 # Use the following command to debug the docker build locally:
72 # $ docker run -itv "${PWD}:/usr/src/git" --entrypoint /bin/bash daald/ubuntu32:xenial
73 # root@container:/# /usr/src/git/ci/run-linux32-build.sh
84 script: ci/test-documentation.sh
89 case "${TRAVIS_OS_NAME:-linux}" in
91 export GIT_TEST_HTTPD=YesPlease
93 mkdir --parents custom/p4
95 wget --quiet http://filehost.perforce.com/perforce/r$LINUX_P4_VERSION/bin.linux26x86_64/p4d
96 wget --quiet http://filehost.perforce.com/perforce/r$LINUX_P4_VERSION/bin.linux26x86_64/p4
99 export PATH="$(pwd):$PATH"
101 mkdir --parents custom/git-lfs
103 wget --quiet https://github.com/github/git-lfs/releases/download/v$LINUX_GIT_LFS_VERSION/git-lfs-linux-amd64-$LINUX_GIT_LFS_VERSION.tar.gz
104 tar --extract --gunzip --file "git-lfs-linux-amd64-$LINUX_GIT_LFS_VERSION.tar.gz"
105 cp git-lfs-$LINUX_GIT_LFS_VERSION/git-lfs .
106 export PATH="$(pwd):$PATH"
111 # Uncomment this if you want to run perf tests:
112 # brew install gnu-time
113 brew install git-lfs gettext
114 brew link --force gettext
115 brew install caskroom/cask/perforce
118 echo "$(tput setaf 6)Perforce Server Version$(tput sgr0)";
120 echo "$(tput setaf 6)Perforce Client Version$(tput sgr0)";
122 echo "$(tput setaf 6)Git-LFS Version$(tput sgr0)";
124 mkdir -p $HOME/travis-cache;
125 ln -s $HOME/travis-cache/.prove t/.prove;
127 before_script: make --jobs=2
129 script: make --quiet test
133 : '<-- Click here to see detailed test output! ';
134 for TEST_EXIT in t/test-results/*.exit;
136 if [ "$(cat "$TEST_EXIT")" != "0" ];
138 TEST_OUT="${TEST_EXIT%exit}out";
139 echo "------------------------------------------------------------------------";
140 echo "$(tput setaf 1)${TEST_OUT}...$(tput sgr0)";
141 echo "------------------------------------------------------------------------";