We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bf3725 commit 5902e50Copy full SHA for 5902e50
.github/workflows/ci.yml
@@ -103,3 +103,12 @@ jobs:
103
run: |
104
./tests/test-static.sh --docker $MEMGRAPH_IMAGE build/generic/mgconsole
105
./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