This project provides:
(1) Dockerfiles for generating docker images for the purpose of testing PLplot on multiple linux distributions.
(2) Code to run the tests and analyze the results.
The PLplot docker image repository is here
docker run plplot/XXX 2>&1 | tee XXX.txtWhere XXX is a docker image, for example:
docker run plplot/debian-latest 2>&1 | tee debian-latest.txtdocker run -v /absolute/path/to/local/plplot:/plplot_repo plplot/debian-latest 2>&1 | tee debian-latest.txtpython pull_all.py # This will pull the latest images.
python test_all.pyBy default test_all.py will test two images at once, if you want to run more (or less) tests in parallel use the --max_processes argument.
python test_all.py --max_processes 10If you want to test a local repository use the --plplot_repo argument.
python test_all.py --plplot_repo /absolute/path/to/local/plplot_repo