diff options
author | SZEDER Gábor <szeder.dev@gmail.com> | 2019-09-06 14:13:26 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-09-06 10:06:41 -0700 |
commit | 3960290675dc079ee405848182e9a8b5863fd781 (patch) | |
tree | 9ada3bf609784db6ffffe7feee8126bf32666c14 | |
parent | t/lib-git-svn.sh: check GIT_TEST_SVN_HTTPD when running SVN HTTP tests (diff) | |
download | tgif-3960290675dc079ee405848182e9a8b5863fd781.tar.xz |
ci: restore running httpd tests
Once upon a time GIT_TEST_HTTPD was a tristate variable and we
exported 'GIT_TEST_HTTPD=YesPlease' in our CI scripts to make sure
that we run the httpd tests in the Linux Clang and GCC build jobs, or
error out if they can't be run for any reason [1].
Then 3b072c577b (tests: replace test_tristate with "git env--helper",
2019-06-21) came along, turned GIT_TEST_HTTPD into a bool, but forgot
to update our CI scripts accordingly. So, since GIT_TEST_HTTPD is set
explicitly, but its value is not one of the standardized true values,
our CI jobs have been simply skipping the httpd tests in the last
couple of weeks.
Set 'GIT_TEST_HTTPD=true' to restore running httpd tests in our CI
jobs.
[1] a1157b76eb (travis-ci: set GIT_TEST_HTTPD in 'ci/lib-travisci.sh',
2017-12-12)
Signed-off-by: SZEDER Gábor <szeder.dev@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | ci/lib.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -160,7 +160,7 @@ linux-clang|linux-gcc) export CC=gcc-8 fi - export GIT_TEST_HTTPD=YesPlease + export GIT_TEST_HTTPD=true # The Linux build installs the defined dependency versions below. # The OS X build installs much more recent versions, whichever |