Skip to content

Commit 71d6040

Browse files
committed
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent f8ee853 commit 71d6040

8 files changed

+7
-7
lines changed

ci/install-dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Install dependencies required to build and test Git on Linux and macOS
44
#
55

6-
. ${0%/*}/lib-travisci.sh
6+
. ${0%/*}/lib.sh
77

88
P4WHENCE=http://filehost.perforce.com/perforce/r$LINUX_P4_VERSION
99
LFSWHENCE=https://github.com/github/git-lfs/releases/download/v$LINUX_GIT_LFS_VERSION
File renamed without changes.

ci/print-test-failures.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Print output of failing tests
44
#
55

6-
. ${0%/*}/lib-travisci.sh
6+
. ${0%/*}/lib.sh
77

88
# Tracing executed commands would produce too much noise in the loop below.
99
set +x

ci/run-build-and-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Build and test Git
44
#
55

6-
. ${0%/*}/lib-travisci.sh
6+
. ${0%/*}/lib.sh
77

88
ln -s "$cache_dir/.prove" t/.prove
99

ci/run-linux32-docker.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Download and run Docker image to build and test 32-bit Git
44
#
55

6-
. ${0%/*}/lib-travisci.sh
6+
. ${0%/*}/lib.sh
77

88
docker pull daald/ubuntu32:xenial
99

ci/run-static-analysis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Perform various static code analysis checks
44
#
55

6-
. ${0%/*}/lib-travisci.sh
6+
. ${0%/*}/lib.sh
77

88
make --jobs=2 coccicheck
99

ci/run-windows-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# supported) and a commit hash.
77
#
88

9-
. ${0%/*}/lib-travisci.sh
9+
. ${0%/*}/lib.sh
1010

1111
test $# -ne 2 && echo "Unexpected number of parameters" && exit 1
1212
test -z "$GFW_CI_TOKEN" && echo "GFW_CI_TOKEN not defined" && exit

ci/test-documentation.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Perform sanity checks on documentation and build it.
44
#
55

6-
. ${0%/*}/lib-travisci.sh
6+
. ${0%/*}/lib.sh
77

88
gem install asciidoctor
99

0 commit comments

Comments
 (0)