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 44
44
with :
45
45
ref : ${{ github.sha }}
46
46
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
+
47
59
- name : Run Gradio app tests
48
60
run : |
49
61
./test-images.sh $(git rev-parse --short ${{ github.sha }})
74
86
run : ./kind-images.sh $(git rev-parse --short ${{ github.sha }}) ${{ env.CLUSTER_NAME }}
75
87
working-directory : web-apps
76
88
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
-
84
89
# https://github.com/helm/charts/blob/master/test/README.md#providing-custom-test-values
85
90
# Each chart/ci/*-values.yaml file will be treated as a separate test case with it's
86
91
# own helm install/test process.
You can’t perform that action at this time.
0 commit comments