We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 747c3b5 commit bb6809eCopy full SHA for bb6809e
.circleci/config.yml
@@ -79,6 +79,10 @@ do_steps: &do_steps
79
TERM: dumb
80
command: |
81
mkdir -p ~/junit/
82
+ docker ps -a -q # debug : are there any docker containers?
83
+ docker images -q # debug : are there any docker images ?
84
+ docker rm $(docker ps -a -q)
85
+ docker rmi $(docker images -q)
86
find ~/source -type f -name results.xml -exec cp {} ~/junit/ \;
87
find ~/source -type f -name xml2junit.xsl -exec cp {} ~/junit/ \;
88
cp -rpf ~/source/ns-3-dce/testpy-output ~/
0 commit comments