Skip to content

Commit 5902e50

Browse files
committed
added cleanup
1 parent 4bf3725 commit 5902e50

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,3 +103,12 @@ jobs:
103103
run: |
104104
./tests/test-static.sh --docker $MEMGRAPH_IMAGE build/generic/mgconsole
105105
./tests/test-static.sh --use-ssl --docker $MEMGRAPH_IMAGE build/generic/mgconsole
106+
107+
- name: Cleanup docker images
108+
run: |
109+
docker rmi $MEMGRAPH_IMAGE || true
110+
if [[ "${{ matrix.arch }}" == "X64" ]]; then
111+
docker rmi memgraph/mgbuild:v7_centos-9 || true
112+
elif [[ "${{ matrix.arch }}" == "ARM64" ]]; then
113+
docker rmi memgraph/mgbuild:v7_debian-12-arm || true
114+
fi

0 commit comments

Comments
 (0)