]> git.ipfire.org Git - thirdparty/git.git/blob - .travis.yml
Merge branch 'sk/gitweb-highlight-encoding'
[thirdparty/git.git] / .travis.yml
1 language: c
2
3 sudo: false
4
5 cache:
6 directories:
7 - $HOME/travis-cache
8
9 os:
10 - linux
11 - osx
12
13 compiler:
14 - clang
15 - gcc
16
17 addons:
18 apt:
19 packages:
20 - language-pack-is
21
22 env:
23 global:
24 - DEVELOPER=1
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"
37
38 before_install:
39 - >
40 case "${TRAVIS_OS_NAME:-linux}" in
41 linux)
42 mkdir --parents custom/p4
43 pushd custom/p4
44 wget --quiet http://filehost.perforce.com/perforce/r$LINUX_P4_VERSION/bin.linux26x86_64/p4d
45 wget --quiet http://filehost.perforce.com/perforce/r$LINUX_P4_VERSION/bin.linux26x86_64/p4
46 chmod u+x p4d
47 chmod u+x p4
48 export PATH="$(pwd):$PATH"
49 popd
50 mkdir --parents custom/git-lfs
51 pushd custom/git-lfs
52 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
53 tar --extract --gunzip --file "git-lfs-linux-amd64-$LINUX_GIT_LFS_VERSION.tar.gz"
54 cp git-lfs-$LINUX_GIT_LFS_VERSION/git-lfs .
55 export PATH="$(pwd):$PATH"
56 popd
57 ;;
58 osx)
59 brew_force_set_latest_binary_hash () {
60 FORMULA=$1
61 SHA=$(brew fetch --force $FORMULA 2>&1 | grep ^SHA256: | cut -d ' ' -f 2)
62 sed -E -i.bak "s/sha256 \"[0-9a-f]{64}\"/sha256 \"$SHA\"/g" \
63 /usr/local/Library/Taps/homebrew/homebrew-binary/$FORMULA.rb
64 }
65 brew update --quiet
66 brew tap homebrew/binary --quiet
67 brew_force_set_latest_binary_hash perforce
68 brew_force_set_latest_binary_hash perforce-server
69 brew install git-lfs perforce-server perforce gettext
70 brew link --force gettext
71 ;;
72 esac;
73 echo "$(tput setaf 6)Perforce Server Version$(tput sgr0)";
74 p4d -V | grep Rev.;
75 echo "$(tput setaf 6)Perforce Client Version$(tput sgr0)";
76 p4 -V | grep Rev.;
77 echo "$(tput setaf 6)Git-LFS Version$(tput sgr0)";
78 git-lfs version;
79 mkdir -p $HOME/travis-cache;
80 ln -s $HOME/travis-cache/.prove t/.prove;
81
82 before_script: make --jobs=2
83
84 script: make --quiet test
85
86 after_failure:
87 - >
88 : '<-- Click here to see detailed test output! ';
89 for TEST_EXIT in t/test-results/*.exit;
90 do
91 if [ "$(cat "$TEST_EXIT")" != "0" ];
92 then
93 TEST_OUT="${TEST_EXIT%exit}out";
94 echo "------------------------------------------------------------------------";
95 echo "$(tput setaf 1)${TEST_OUT}...$(tput sgr0)";
96 echo "------------------------------------------------------------------------";
97 cat "${TEST_OUT}";
98 fi;
99 done;
100
101 notifications:
102 email: false