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