Age | Commit message (Collapse) | Author | Files | Lines |
|
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
|
|
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
|
|
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
|
|
+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
|
|
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
|
|
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
|
|
Google has removed cpplint.py three weeks ago and this has been silently failing since then.
See also mana/plus!123
****
mana/plus!122
|
|
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
|
|
|
|
Reduce some overhead on the script for a 4% speedup
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Ignore some clang and clang tidy warnings.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Also add build date/time into commit version file.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Disabled due disable no way to disable it only in libs.
|
|
|
|
|
|
|
|
And disable fallthrough warnings in clang 6.0 because it broken.
|
|
|
|
|
|
|
|
|
|
Also remove script gcc5_h_pugi.sh
|
|
Also add deheader jobs with other flags.
|