25 # The Linux build installs the defined dependency versions below.
26 # The OS X build installs the latest available versions. Keep that
27 # in mind when you encounter a broken OS X build!
28 - LINUX_P4_VERSION="16.1"
29 - LINUX_GIT_LFS_VERSION="1.2.0"
30 - DEFAULT_TEST_TARGET=prove
31 - GIT_PROVE_OPTS="--timer --jobs 3 --state=failed,slow,save"
32 - GIT_TEST_OPTS="--verbose --tee"
33 - GIT_TEST_CLONE_2GB=YesPlease
34 # t9810 occasionally fails on Travis CI OS X
35 # t9816 occasionally fails with "TAP out of sequence errors" on Travis CI OS X
36 - GIT_SKIP_TESTS="t9810 t9816"
50 script: ci/test-documentation.sh
55 case "${TRAVIS_OS_NAME:-linux}" in
57 mkdir --parents custom/p4
59 wget --quiet http://filehost.perforce.com/perforce/r$LINUX_P4_VERSION/bin.linux26x86_64/p4d
60 wget --quiet http://filehost.perforce.com/perforce/r$LINUX_P4_VERSION/bin.linux26x86_64/p4
63 export PATH="$(pwd):$PATH"
65 mkdir --parents custom/git-lfs
67 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
68 tar --extract --gunzip --file "git-lfs-linux-amd64-$LINUX_GIT_LFS_VERSION.tar.gz"
69 cp git-lfs-$LINUX_GIT_LFS_VERSION/git-lfs .
70 export PATH="$(pwd):$PATH"
74 brew_force_set_latest_binary_hash () {
76 SHA=$(brew fetch --force $FORMULA 2>&1 | grep ^SHA256: | cut -d ' ' -f 2)
77 sed -E -i.bak "s/sha256 \"[0-9a-f]{64}\"/sha256 \"$SHA\"/g" \
78 /usr/local/Library/Taps/homebrew/homebrew-binary/$FORMULA.rb
81 brew tap homebrew/binary --quiet
82 brew_force_set_latest_binary_hash perforce
83 brew_force_set_latest_binary_hash perforce-server
84 brew install git-lfs perforce-server perforce gettext
85 brew link --force gettext
88 echo "$(tput setaf 6)Perforce Server Version$(tput sgr0)";
90 echo "$(tput setaf 6)Perforce Client Version$(tput sgr0)";
92 echo "$(tput setaf 6)Git-LFS Version$(tput sgr0)";
94 mkdir -p $HOME/travis-cache;
95 ln -s $HOME/travis-cache/.prove t/.prove;
97 before_script: make --jobs=2
99 script: make --quiet test
103 : '<-- Click here to see detailed test output! ';
104 for TEST_EXIT in t/test-results/*.exit;
106 if [ "$(cat "$TEST_EXIT")" != "0" ];
108 TEST_OUT="${TEST_EXIT%exit}out";
109 echo "------------------------------------------------------------------------";
110 echo "$(tput setaf 1)${TEST_OUT}...$(tput sgr0)";
111 echo "------------------------------------------------------------------------";