-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
GitHub build & quality assurance workflow updates #3144
GitHub build & quality assurance workflow updates #3144
Conversation
268962e
to
3fb00c5
Compare
Hi @eduar-hte, thanks again this awesome PR!
These are great, these were on my list as I realized that the 32 bit build is the same as the 64 bit. Thanks.
oh, thanks!
Hmmm... I'm a bit confused here. Why did you add this? As we discussed (or I suggested) here XML and JSON parsers should be mandatory too. So I think we don't need
Yes, this is a good step.
Thanks.
Ah, this is very good, thanks.
Thanks for all. Here you changed the Thanks again. |
There is a new SonarCloud issue, but I think actually we can mark it as FP, so you don't need to care of that. |
3fb00c5
to
c2ae83e
Compare
Oh, that is a mistake. Those are the tests that are disabled on Windows (because of the incorrect dependency on a specific order from iterating on a I've just reverted those changes. Nice catch!
Yes, you mentioned in passing that it's an important component of the library. At the same time, in the limited scope of this PR (just to update the GH workflows) I thought that given that it's not a mandatory dependency and the codebase currently has support to disable use of that library (through the compiler definition Of course, a separate PR could be done to remove those compiler guards and this new build configuration, and I'd be ok with it (it didn't take a lot of effort to add support for regression for that resource and annotate the testcases). |
BTW, because SonarCloud configuration is not done through a GitHub workflow I couldn't see if it was possible to configure it to analyze the code as standard C++ 17. It currently reports issues and suggests using newer features from C++20 (such as std::format or ranges, see here and here) which add a bit of noise. |
With regards to dependencies, I think the section in README.md could be updated to be more accurate. The line that mentions YAJL, libpcre & libXML2 starts by stating that these are mandatory dependencies but clarifies that two out of the three are not yet so. I think either pcre or pcre2 are mandatory to build the library, while as we discussed libXML2 seems optional (at least for the time). I think that sentence would be more accurate and read better like this:
One other minor issue is that the last sentence implies that libinjection is not mandatory, and that if the library is missing you just won't get the associated operator, but something I found out a few times when I forgot to init & update submodules on my Unix builds is that configure won't complete without it, which actually makes it mandatory. :-)
(edit) I ended up creating another quick PR (#3145) to move this discussion there and update README, but I think it'd be better if I create a PR to actually update configure and the codebase to enforce the mandatory dependencies (such as YAJL, libXML2 and probably PCRE2 -as the original pcre has been end of life since 2021-). |
c2ae83e
to
9035410
Compare
- Annotated regression tests that depend on libxml2 support - Added Windows build without libxml2
9035410
to
340fd2d
Compare
340fd2d
to
0f1079e
Compare
I updated the Unix build configurations with the following change:
If you look at the configure step of builds (such as this), you'll see in all the configurations (not just for the one in the strategy created to build 'without lmdb'):
|
no worries, thanks!
Okay, we can cover all possible build options, therefore if we enable the flag |
I try to take a look how is it possible.
Just FYI: there is an intention to bump the C++ version to 20 - see this comment. |
I thought about that but didn't do it because I wanted to follow what the project documentation currently states. Moreover, the last couple of days I worked on what I suggested in the previous comment, about actually enforcing the mandatory dependencies (yajl, pcre & libxml2) to simplify the build (reduces the number of combinations to test across OS & architectures) and codebase (reduces unnecessary #ifdef blocks). I'd like to like to follow up this PR with those changes, which I didn't want to include in this one in order to keep this one simple (and aligned with the current documentation), and then analyze and discuss those changes separately. What do you think? |
Agree. Thanks for spotting that.
or we should make them really mandatory.
Yeah, unfortunately libinjection is an orphaned project (I mean there are not so much updates and maintaining), so operating systems does not like these libraries. So I think actually the best way is to use that as submodule. But yes, I know it s*cks. :)
Right, thank you. |
Nice catch! Seems like this has changed meanwhile, because LMDB was included if the configure script detected it. But yes, this modification is necessary, thanks. |
I agree, that's why I started working on that separate PR I just mentioned to do that (and then update README.md 🙂).
Curiously, while working on enforcing the mandatory dependencies I realized that configure actually states that both submodules are mandatory dependencies!
|
oh, that makes sense - thanks for clarify it.
Agree - I'll take a look again this PR and probably will merge it soon. Then you can send the next one. Thank you for your patience and your work. |
Right,
Hmm... I don't see the reason why "SecLang tests" is mandatory - probably we should figure out this. Libinjection is... well, I think it's like pcre(2), so yes, I can agree that. |
- Added support to build 32-bit versions of libModSecurity on Linux - Added support to build libModSecurity using clang on Linux (both 64-bit and 32-bit versions) - Fixed macOS dependencies to include yajl, not only because it is a required dependency, but because tests were not being run on macOS builds without it. - Added build 'without libxml' to Linux & macOS configurations. - Added build 'without ssdeep' to Linux configurations (already in macOS configuration) - Added build 'with lmdb' to Linux & macOS configurations, replacing the existing one 'without lmdb' because by default LMDB is disabled if not explicitly turn on in configure. - Removed 'without yajl' build because it's a required 3rd party dependency. - Added bison & flex dependencies to enable parser generation.
0f1079e
to
d9255d8
Compare
|
Thank you again this great PR, merging it. |
You're welcome. I'll follow up later about adjusting the mandatory dependencies after rebasing. |
…on Unix builds - This configuration flag was introduced in commit d47185d in the context of PR owasp-modsecurity#3207. - Moved to the configure step's 'run' command in order to be shared across configurations. - For the sake of reference, matrix.platform.configure should be used for configuration flags that are needed for a specific platform/architecture (which was the reason it was introduced in commit d9255d8, PR owasp-modsecurity#3144).
This PR introduces the following changes to the GitHub build & QA workflows: