ci: rename the library of common functions

The name is hard-coded to reflect that we use Travis CI for continuous testing. In the next commits, we will extend this to be able use Azure DevOps, too. So let's adjust the name to make it more generic. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Johannes Schindelin committed Jan 27, 2019 at 15:26 UTC c2160f2d1943d0b72a18e21300f98ef008e48696
8 files changed +7 -7
ci/install-dependencies.sh
+1 -1
@@ -3,7 +3,7 @@
3 # Install dependencies required to build and test Git on Linux and macOS
4 #
5
6 -. ${0%/*}/lib-travisci.sh
6 +. ${0%/*}/lib.sh
7
8 P4WHENCE=http://filehost.perforce.com/perforce/r$LINUX_P4_VERSION
9 LFSWHENCE=https://github.com/github/git-lfs/releases/download/v$LINUX_GIT_LFS_VERSION
ci/lib.sh renamed
ci/print-test-failures.sh
+1 -1
@@ -3,7 +3,7 @@
3 # Print output of failing tests
4 #
5
6 -. ${0%/*}/lib-travisci.sh
6 +. ${0%/*}/lib.sh
7
8 # Tracing executed commands would produce too much noise in the loop below.
9 set +x
ci/run-build-and-tests.sh
+1 -1
@@ -3,7 +3,7 @@
3 # Build and test Git
4 #
5
6 -. ${0%/*}/lib-travisci.sh
6 +. ${0%/*}/lib.sh
7
8 ln -s "$cache_dir/.prove" t/.prove
9
ci/run-linux32-docker.sh
+1 -1
@@ -3,7 +3,7 @@
3 # Download and run Docker image to build and test 32-bit Git
4 #
5
6 -. ${0%/*}/lib-travisci.sh
6 +. ${0%/*}/lib.sh
7
8 docker pull daald/ubuntu32:xenial
9
ci/run-static-analysis.sh
+1 -1
@@ -3,7 +3,7 @@
3 # Perform various static code analysis checks
4 #
5
6 -. ${0%/*}/lib-travisci.sh
6 +. ${0%/*}/lib.sh
7
8 make --jobs=2 coccicheck
9
ci/run-windows-build.sh
+1 -1
@@ -6,7 +6,7 @@
6 # supported) and a commit hash.
7 #
8
9 -. ${0%/*}/lib-travisci.sh
9 +. ${0%/*}/lib.sh
10
11 test $# -ne 2 && echo "Unexpected number of parameters" && exit 1
12 test -z "$GFW_CI_TOKEN" && echo "GFW_CI_TOKEN not defined" && exit
ci/test-documentation.sh
+1 -1
@@ -3,7 +3,7 @@
3 # Perform sanity checks on documentation and build it.
4 #
5
6 -. ${0%/*}/lib-travisci.sh
6 +. ${0%/*}/lib.sh
7
8 gem install asciidoctor
9