aboutsummaryrefslogtreecommitdiff
path: root/CONTRIBUTING.md
AgeCommit message (Collapse)Author
2019-07-20No longer mention Bazel's --python_path=/usr/bin/python3 arg in the ↵Marco Poletti
documentation, it's no longer required.
2018-09-01Add more info on how to set up the environment to run tests on Windows.Marco Poletti
2018-08-27Use #if instead of #ifdef for Fruit macros (apart from include guards).Marco Poletti
2017-12-27Document the vulnerability reporting process.poletti-marco
2017-12-27Mention test and code style requirements in the "Sending pull requests" ↵poletti-marco
section of CONTRIBUTING.md.
2017-12-27Add a .clang-format config file and reformat all C++ source code using that. ↵Marco Poletti
Also added some documentation on the preferred style in CONTRIBUTING.md.
2017-11-18Make the Fruit tests pass with recent versions of Bazel (e.g. 0.7.0).Marco Poletti
2017-08-06Minor improvement to the MSVC section of the CONTRIBUTING.md file.Marco Poletti
2017-07-13Add support for collecting test coverage, and document how to do it.Marco Poletti
2017-07-08Set aggressive Fruit debug flags only in Fruit CI instead of always setting ↵Marco Poletti
them when CMAKE_BUILD_TYPE=Debug. Users compiling Fruit with CMAKE_BUILD_TYPE=Debug are probably interested in debugging their code rather than Fruit's.
2017-06-17Remove the BUILD_TESTS_IN_RELEASE_MODE CMake flag, now there's almost ↵Marco Poletti
nothing to build in the tests/ directory, so we'll always build it as part of the "all" target, even in release mode.
2017-06-17Avoid copying testing files to the build directory.Marco Poletti
These copies could cause confusion while developing Fruit if CMake doesn't re-run and the copy in the build directory becomes stale. After this commit, tests must be run from the tests/ subdirectory of the build root, not from the build root itself.
2017-06-17Update the documentation on how to run Fruit's tests on Windows.Marco Poletti
2017-06-12Migrate all Fruit tests to pytest, to improve parallelization. After this ↵Marco Poletti
change, it's no longer possible to run Fruit tests via CTest.
2017-06-11Document how to build and run Fruit in Visual Studio.Marco Poletti
Also add a FRUIT_ADDITIONAL_CXX_FLAGS CMake argument (convenient when building Fruit from Visual Studio).
2017-02-18Add a CONTRIBUTING.md file to provide useful information for Fruit contributors.Marco Poletti
[ci skip]