neovim/ci
James McCoy 2cbac719c3
Downgrade to clang-4.0 to avoid false-positive warnings from clang
* -Wtautological-compare

    error: self-comparison always evaluates to true [-Werror,-Wtautological-compare]
    for (win_T *wp = ((curtab) == curtab) ? firstwin : (curtab)->tp_firstwin; wp != ((void*)0); wp = wp->w_next) {

* -Wconversion

    error: implicit conversion loses floating-point precision: 'const float_T' (aka 'const double') to 'float' [-Werror,-Wconversion]
          do { const float_T flt_ = (tv->vval.v_float); switch ((sizeof (flt_) == sizeof (float) ? __fpclassifyf (flt_) : sizeof (flt_) == sizeof (double) ? __fpclassify (flt_) : __fpclassifyl (flt_))) { case 0: { ga_concat(gap, (char_u *)(char_u *) "str2float('nan')"); break; } case 1: { if (flt_ < 0) { ga_append(gap, '-'); } ga_concat(gap, (char_u *)(char_u *) "str2float('inf')"); break; } default: { char numbuf[NUMBUFLEN]; vim_snprintf(numbuf, ((sizeof(numbuf)/sizeof((numbuf)[0])) / ((size_t)(!(sizeof(numbuf) % sizeof((numbuf)[0]))))), "%g", flt_); ga_concat(gap, (char_u *)(char_u *) numbuf); } } } while (0);
                                                                                                   ~~~~~~~~~~~~~  ^~~~
2018-11-24 22:56:25 +01:00
..
common Downgrade to clang-4.0 to avoid false-positive warnings from clang 2018-11-24 22:56:25 +01:00
before_cache.sh travis: Enable ccache 2018-05-01 07:02:44 -04:00
before_install.sh CI/Travis/macOS: use default Travis-provided python/pip 2018-10-23 02:01:12 +02:00
before_script.sh travis: Enable ccache 2018-05-01 07:02:44 -04:00
build.ps1 CI/AppVeyor: Avoid "warning" which causes non-zero retcode 2018-11-05 00:35:54 +01:00
install.sh travis: switch from Ubuntu 14.04 to 16.04 2018-11-24 22:56:24 +01:00
run_lint.sh ci/travis: use ninja instead of make 2018-03-11 12:45:15 +01:00
run_tests.sh travis: Don't run unit tests for functionaltest-lua build 2018-02-02 07:28:56 -05:00
script.sh ci: Refactor CI scripts 2017-03-31 16:06:17 +03:00