Skip to content

Commit c64462f

Browse files
committed
Add docker storage reconfiguration step
1 parent fd3b852 commit c64462f

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

.github/workflows/test-pr.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,18 @@ jobs:
4444
with:
4545
ref: ${{ github.sha }}
4646

47+
- name: Reconfigure docker storage
48+
# GitHub runners have an extra 75G disk at /mnt
49+
# so we use this to avoid hitting capacity issues
50+
# with kind cluster + vLLM container images
51+
run: |
52+
sudo bash -c 'cat > /etc/docker/daemon.json' << EOF
53+
{
54+
"data-root": "/mnt/docker-data"
55+
}
56+
EOF
57+
sudo systemctl restart docker
58+
4759
- name: Run Gradio app tests
4860
run: |
4961
./test-images.sh $(git rev-parse --short ${{ github.sha }})
@@ -74,13 +86,6 @@ jobs:
7486
run: ./kind-images.sh $(git rev-parse --short ${{ github.sha }}) ${{ env.CLUSTER_NAME }}
7587
working-directory: web-apps
7688

77-
# TODO: Remove me
78-
- name: Setup upterm session
79-
uses: lhotari/action-upterm@v1
80-
with:
81-
## limits ssh access and adds the ssh public key for the user which triggered the workflow
82-
limit-access-to-actor: true
83-
8489
# https://github.com/helm/charts/blob/master/test/README.md#providing-custom-test-values
8590
# Each chart/ci/*-values.yaml file will be treated as a separate test case with it's
8691
# own helm install/test process.

0 commit comments

Comments
 (0)