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.txt
Where XXX is a docker image, for example:
docker run plplot/debian-latest 2>&1 | tee debian-latest.txt
docker run -v /absolute/path/to/local/plplot:/plplot_repo plplot/debian-latest 2>&1 | tee debian-latest.txt
python pull_all.py # This will pull the latest images.
python test_all.py
By 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 10
If you want to test a local repository use the --plplot_repo argument.
python test_all.py --plplot_repo /absolute/path/to/local/plplot_repo