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.1"
31 - LINUX_GIT_LFS_VERSION="1.2.0"
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"
52 script: ci/test-documentation.sh
57 case "${TRAVIS_OS_NAME:-linux}" in
59 export GIT_TEST_HTTPD=YesPlease
61 mkdir --parents custom/p4
63 wget --quiet http://filehost.perforce.com/perforce/r$LINUX_P4_VERSION/bin.linux26x86_64/p4d
64 wget --quiet http://filehost.perforce.com/perforce/r$LINUX_P4_VERSION/bin.linux26x86_64/p4
67 export PATH="$(pwd):$PATH"
69 mkdir --parents custom/git-lfs
71 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
72 tar --extract --gunzip --file "git-lfs-linux-amd64-$LINUX_GIT_LFS_VERSION.tar.gz"
73 cp git-lfs-$LINUX_GIT_LFS_VERSION/git-lfs .
74 export PATH="$(pwd):$PATH"
78 brew_force_set_latest_binary_hash () {
80 SHA=$(brew fetch --force $FORMULA 2>&1 | grep ^SHA256: | cut -d ' ' -f 2)
81 sed -E -i.bak "s/sha256 \"[0-9a-f]{64}\"/sha256 \"$SHA\"/g" \
82 "$(brew --repository homebrew/homebrew-binary)/$FORMULA.rb"
85 brew tap homebrew/binary --quiet
86 brew_force_set_latest_binary_hash perforce
87 brew_force_set_latest_binary_hash perforce-server
88 # Uncomment this if you want to run perf tests:
89 # brew install gnu-time
90 brew install git-lfs perforce-server perforce gettext
91 brew link --force gettext
94 echo "$(tput setaf 6)Perforce Server Version$(tput sgr0)";
96 echo "$(tput setaf 6)Perforce Client Version$(tput sgr0)";
98 echo "$(tput setaf 6)Git-LFS Version$(tput sgr0)";
100 mkdir -p $HOME/travis-cache;
101 ln -s $HOME/travis-cache/.prove t/.prove;
103 before_script: make --jobs=2
105 script: make --quiet test
109 : '<-- Click here to see detailed test output! ';
110 for TEST_EXIT in t/test-results/*.exit;
112 if [ "$(cat "$TEST_EXIT")" != "0" ];
114 TEST_OUT="${TEST_EXIT%exit}out";
115 echo "------------------------------------------------------------------------";
116 echo "$(tput setaf 1)${TEST_OUT}...$(tput sgr0)";
117 echo "------------------------------------------------------------------------";