mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-07-15 01:21:48 +08:00

Specifically: - Fixed ctz on 32-bit arm (where `uint64_t` is `unsigned long long`) - Fixed build of random_cpp11 snippet when C++11 is disabled - Updated CI scripts to run windows on push, and added a no-c++11 test
Eigen CI infrastructure
Eigen's CI infrastructure uses three stages:
- A
checkformat
stage to verify MRs satisfy proper formatting style, as defined byclang-format
. - A
build
stage to build the unit-tests. - A
test
stage to run the unit-tests.
For merge requests, only a small subset of tests are built/run, and only on a small subset of platforms. This is to reduce our overall testing infrastructure resource usage. In addition, we have nightly jobs that build and run the full suite of tests on most officially supported platforms.