Damian's May Update
Jun 10, 2019This month I’ve been working on the following projects:
- Certify
- Boost.Beast
- Boost.Build
Certify
This month, I’ve worked on expanding the documentation of Certify, especially the example and introduction parts. When looking through the documentation for Boost.Build I found out it’s possible to import snippets from *.cpp files into the documentation, which will allow me to make sure that snippets in the documentation compile and are tested. I’ve also attempted cleaning up the Certify build script to use the OpenSSL module in b2, but I ran into issues, so I’ll have get back to this one in the future.
Don’t forget to star the repository: https://github.com/djarek/certify!
Boost.Beast
I’ve been able to complete the port of the Beast CI to Azure Pipelines and expand
the test matrix beyond what was tested in the existing CI infrastructure. Thanks
to the expanded concurrent job limit, a full run on AzP takes less time than a
full Travis and Appveyor build, especially when wait times are taken into accout.
One of the matrix items I added were tests for header-only no-deprecated builds,
which turned out to be broken. Untested code has a nasty tendency to rot.
I’ve also been able to identify some function templates in http::basic_fields
which could be turned into regular functions. One of them, was instantiated
4 times because they were passed a predicate which was a lambda expression.
These two changes turned out to be fairly significant, because they allowed
shaving off at least 10 KiB of binary size per instantiation (amd64, -O3).
Boost.Build
When working on the Azure Pipelines CI for Beast I noticed that b2 doesn’t support
the leak sanitizer, so I decided to add it. It’s available via the leak-sanitizer=on
feature.
All Posts by This Author
- 08/19/2019 Damian's July Update
- 07/14/2019 Damian's June Update
- 06/10/2019 Damian's May Update
- 05/05/2019 Damian's April Update
- 04/04/2019 Damian's March Update
- 03/16/2019 Certify X509 Validation
- 10/24/2018 Initial Work On Certify Complete
- 09/03/2018 Damian Jarek Joins As Staff Engineer
- View All Posts...