aboutsummaryrefslogtreecommitdiff
path: root/ci/README.md
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2019-08-10 12:56:46 -0400
committerMarcoFalke <falke.marco@gmail.com>2019-08-15 11:12:34 -0400
commitfa31bc35eb8dd7e727e3e1eaf2c45017cd63bdcb (patch)
tree6cf47d9094d34eab3b9f6d09f2918cf1106faad9 /ci/README.md
parentfa0aac0f43a108a88b03a346464ecda4ae2cf630 (diff)
downloadbitcoin-fa31bc35eb8dd7e727e3e1eaf2c45017cd63bdcb.tar.xz
ci: Remove dependence on travis, use it as fallback env
Diffstat (limited to 'ci/README.md')
-rw-r--r--ci/README.md18
1 files changed, 17 insertions, 1 deletions
diff --git a/ci/README.md b/ci/README.md
index 0aed238c77..a50c7868a6 100644
--- a/ci/README.md
+++ b/ci/README.md
@@ -3,6 +3,22 @@
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](https://docs.travis-ci.com/user/job-lifecycle#the-job-lifecycle). Every script in here is named
+[Travis CI lifecycle](https://docs.travis-ci.com/user/job-lifecycle#the-job-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.