File tree Expand file tree Collapse file tree 1 file changed +12
-7
lines changed Expand file tree Collapse file tree 1 file changed +12
-7
lines changed Original file line number Diff line number Diff line change 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 }})
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.
You can’t perform that action at this time.
0 commit comments