dogecoin/ci
2019-08-15 11:13:09 -04:00
..
extended_lint ci: Rename .travis/ to ./ci/ 2019-08-15 11:11:45 -04:00
lint ci: Rename .travis/ to ./ci/ 2019-08-15 11:11:45 -04:00
retry ci: Remove dependence on travis, use it as fallback env 2019-08-15 11:12:34 -04:00
test ci: Use ./ci/ on non-travis host 2019-08-15 11:13:09 -04:00
README.md ci: Remove dependence on travis, use it as fallback env 2019-08-15 11:12:34 -04:00
test_run_all.sh ci: Remove dependence on travis, use it as fallback env 2019-08-15 11:12:34 -04:00

ci scripts

This directory contains scripts for each build step in each build stage.

Currently three stages lint, extended_lint and test are defined. Each stage has its own lifecycle, similar to the Travis CI lifecycle. Every script in here is named and numbered according to which stage and lifecycle step it belongs to.

Running a stage locally

To allow for a wide range of tested environments, but also ensure reproducibility to some extent, the test stage requires docker to be installed. To install all requirements on Ubuntu, run

sudo apt install docker.io ccache bash git

To run the test stage,

./ci/test_run_all.sh

Be aware that the tests will be build and run in-place, so please run at your own risk.