File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 4242 - name : Install dependencies
4343 run : python3 -m pip install -U -e .[all]
4444
45+ - name : pre-pull container images
46+ run : make container-pull
47+
4548 - name : Build documentation
4649 run : make html
4750
Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ unittest-examples:
3939check-json :
4040 python -m json.tool < src/.zenodo.json >> /dev/null && exit 0 || echo " NOT valid JSON" ; exit 1
4141
42+ container-pull :
43+ for container in $$ (git grep dockerPull $$ (git ls-files * .cwl) | awk ' -F: ' ' {print $$3}' ); do docker pull $$ {container}; done
44+
4245.PHONY : help clean watch unittest-examples check-json Makefile
4346
4447# Catch-all target : route all unknown targets to Sphinx using the new
You can’t perform that action at this time.
0 commit comments