We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc73d94 commit e6d0cd3Copy full SHA for e6d0cd3
2 files changed
.github/workflows/run-samples.yml
@@ -27,7 +27,7 @@ jobs:
27
matrix:
28
shard: [1, 2]
29
splits: [2]
30
- runs-on: ubuntu-latest-8-cores
+ runs-on: ubuntu-latest
31
32
env:
33
IMAGE_NAME: localstack/localstack-azure-alpha
run-samples.sh
@@ -106,6 +106,10 @@ for (( i=START; i<START+COUNT; i++ )); do
106
107
popd > /dev/null
108
echo "Completed: $path"
109
+
110
+ # Cleanup Docker resources after each test to free up disk space
111
+ echo "Cleaning up Docker resources..."
112
+ docker system prune -af --volumes || true
113
echo ""
114
done
115
0 commit comments