Skip to content

Commit bb6809e

Browse files
committed
debug : pre existing container and image removal
Signed-off-by: Parth Pratim Chatterjee <[email protected]>
1 parent 747c3b5 commit bb6809e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.circleci/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ do_steps: &do_steps
7979
TERM: dumb
8080
command: |
8181
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)
8286
find ~/source -type f -name results.xml -exec cp {} ~/junit/ \;
8387
find ~/source -type f -name xml2junit.xsl -exec cp {} ~/junit/ \;
8488
cp -rpf ~/source/ns-3-dce/testpy-output ~/

0 commit comments

Comments
 (0)