summaryrefslogtreecommitdiff
path: root/tools/ci/jobs
AgeCommit message (Collapse)AuthorFilesLines
2025-02-24Add POTFILES.in updater check to linter CI job.Fedja Beader1-0/+21
while processing mana/plus!132 I spotted what looked like an ommision of several src/progs/{manaplus,manaverse} files from POTFILES.in, but as it turned out, they have no strings marked for translation (start with "_("). Squashed with: * Just force LC_COLLATE=C and commit POTFILES.in changes required to make this happen. Don't know how to repro CI's sorting locally and it's pointless as my local sort is clearly wrong. See traderecv.cpp's position for why. * The correct locale variable to set should be LC_COLLATE, which is probably set by LANG on all platforms and so this will fail, again. * sort is still not preserving the order of files :/ * Ensure the order of files remains the same regardless of platform. * POTFILES update to pass CI :) **** mana/plus!133
2025-02-22Set C++11 as default C++ standardFedja Beader5-5/+4
Autoconf manual states that CXXFLAGS is a user variable and should not be overriden, so I did not use AX_APPEND_COMPILE_FLAGS for this. Thus, there are no checks if the compiler supports it, but also the builder can override this flag by passing another flag that overrides it on the command line. Okay, this is now way too theoretical. Indeed, the override happens with ./configure 'CXXFLAGS=-std=c++17' (both flags in final command line) Do note: - The standard was not explicitly set for some builds (thus compiler default was used) - The default on my own box is C++17 - I'm setting C++11 as that's required by my previous change. Upgrade to C++17 is deferred to until it becomes required. - The use of CPPFLAGS could be reviewed... they may be used incorrectly (instead of CXXFLAGS). I would really like to get all the builders going before requirements are raised. - CI cleanup would be nice - wish 4144 would return. **** mana/plus!128
2025-02-12Fix erroneous call in find that resulted in cpplint processing only *.cc filesFedja Beader1-10/+14
https://git.themanaworld.org/mana/plus/-/jobs/183682#L81 the ORs were not groupped together in the find call, resulting in only *.cc files being processed. > Total errors found: 3463 Well, this will take a while to fix :disappointed: . Squashed with: * Trim unnecessary excludes, for there is no matching error to exclude. Fine-tune the remaining ones. * The grep below wasn't working as find exited nonzero and code that was supposed to handle that wasn't working as well as expected **** mana/plus!126
2025-02-10Upgrade cpplint to latest releaseFedja Beader1-1/+4
+Update CI job from Debian Buster to Bullseye. Buster's Py3.7 is too old for cpplint. Squashed with: * Update linters job to debian bullseye * Force use of python3 * Try upgrade to python3. Other scripts will probably break. **** mana/plus!124
2025-02-10Properly fail the nsiqcppstyle part of the linters CI jobFedja Beader2-9/+13
From updating to buster->bullseye in !124: nsiqcppstyle was silently failing, too >_> Squashed with: * I always forget newlines at end of printfs. * Add sore thumb to remind me of untreated wounds beneath bandages * nsiqcppstyle was silently failing, too >_> *Explicitly call python2 *Grep will exit non-zero if it finds nothing. *fix* **** mana/plus!125
2025-02-10Properly fail the failing cpplint.py part of linters CI jobFedja Beader1-9/+13
Squashed with: * Split out change * Let's get this to properly fail, first. put unfiltered file name into a variable and append .log to make it viewable online + direct URL for cpplint.py like before IT's LOGFILE, not ERRFILE.. sigh Nevermind, it actually is ERRFILE + add unfiltered version to init Downgrade version, py3 later Let's get unfiltered log to print if find fails Related: mana/plus!122 **** mana/plus!123
2025-02-10Fix cpplint.py part of linters CI jobFedja Beader1-2/+4
Google has removed cpplint.py three weeks ago and this has been silently failing since then. See also mana/plus!123 **** mana/plus!122
2024-05-10Download mplint release instead of recompiling every timeFedja Beader1-18/+7
Saves 1min10s by not compiling and another 15s by moving it together with linters. Squashed with: * Make sure mplint internal error or failure to run is detected * Make mplint breaking cause job to fail * Move linters out of lightweight.. goes faster, 3m46s -> 1m45s * Make script fail if any command returns nonzero or if any variable is unset. * Donwload mplint instead of building it **** mana/plus!80
2024-04-09Fix nsiqcppstyle part of linters job to actually fail in case of issuesFedja Beader1-0/+1
2024-02-08Be slightly more smart when running mplintJesusalva Jesusalva1-1/+3
Reduce some overhead on the script for a 4% speedup
2023-09-10trim useless uses of catFedja Beader4-26/+21
2023-09-10Reduce number of grep invocations + prettify + wrap param expansion in quotesFedja Beader3-33/+37
2023-09-09Reduce number of cpplint invocations from 1957 (?) to one.Fedja Beader1-1/+1
2023-09-09Reduce number of find and grep invocationsFedja Beader1-15/+17
2023-09-09Re-download cpplint only if needed or older than a dayFedja Beader1-3/+6
2022-12-23updated mplint repositoryjak11-1/+1
2020-06-04Use cross platform path to bash in ci scriptsAndrei Karas114-114/+114
2020-06-02Remove pedantic flag from gcc-9 and gcc-10 silent build scriptsAndrei Karas2-3/+3
2020-05-30Add ci job for any compiler testsAndrei Karas1-0/+23
2020-05-30Add gcc-10 related ci scriptsAndrei Karas9-0/+331
2020-05-30Add gcc-9 related ci scriptsAndrei Karas9-0/+331
2019-12-20Add linking with "-lm -ldl" in sanitize builds due SDL linking issueAndrei Karas11-0/+22
2018-11-04Fix clang39, clang60 ci scripts and clang-tidy configuration.Andrei Karas5-7/+7
2018-11-03Fix different issues in updated CI environments.Andrei Karas6-0/+6
Ignore some clang and clang tidy warnings.
2018-09-19Add macosx builds with azure pipelines.Andrei Karas1-0/+11
2018-07-28Disable warning deprecated-copy in gcc-snapshot builds [ci skip].Andrei Karas4-4/+8
2018-07-11Exclude header doctest.h from deheader.Andrei Karas1-0/+1
2018-06-18Add flag -D_GLIBCXX_SANITIZE_VECTOR into asan builds.Andrei Karas11-0/+11
2018-06-18Fix date build stamp in stats site.Andrei Karas1-1/+1
2018-06-18Add gitstatsh ci script for git stats [ci skip]Andrei Karas2-0/+24
2018-06-18Fix stats site compilation.Andrei Karas1-1/+2
Also add build date/time into commit version file.
2018-05-19Disable warning -Wimplicit-fallthrough in clang 5.0 builds.Andrei Karas2-2/+2
2018-05-19Disable in clang-5 build jobs warnings for c++98-compat.Andrei Karas2-0/+2
2018-05-06Add new asan flags into gcc-8 ci scripts.Andrei Karas2-0/+2
2018-05-05Add some gcc-8 builds into .gitlab-ci.ymlAndrei Karas9-9/+9
2018-05-05Add gcc-8 ci build scripts.Andrei Karas9-0/+323
2018-02-19Use libc++ in clang6 builds.Andrei Karas2-2/+2
2018-02-19Use libc++ in clang7 builds.Andrei Karas2-4/+4
2018-02-19Add clang7 build scripts.Andrei Karas2-0/+75
2018-01-01Disable warning -Wzero-as-null-pointer-constant in clang 6.Andrei Karas2-2/+6
Disabled due disable no way to disable it only in libs.
2017-12-31Remove not released yet asan flags.Andrei Karas2-4/+2
2017-12-30Add extra runtime checks into gcc-7 sanitize builds.Andrei Karas2-1/+2
2017-12-30Add additional sanitize flags into gcc-7 / gcc-snapshot builds.Andrei Karas3-0/+12
2017-12-29Remove clang attributes from sdlgfxblitfunc.cppAndrei Karas1-0/+1
And disable fallthrough warnings in clang 6.0 because it broken.
2017-12-28Hide clang6 warning -Wc++98-compat-pedantic.Andrei Karas1-1/+2
2017-10-13Fix pages.sh script [skip ci]Andrei Karas1-4/+4
2017-10-13Remove mplint directory before clone.Andrei Karas1-0/+1
2017-10-13Update script for pages job in ci_site branch.Andrei Karas1-13/+12
2017-10-09Merge .h build files in .gitlab-ci.ymlAndrei Karas1-29/+0
Also remove script gcc5_h_pugi.sh
2017-10-06Join deheader jobs into single jobs.Andrei Karas1-0/+1
Also add deheader jobs with other flags.