@@ -119,6 +119,10 @@ jobs:
119119 uses : actions/setup-go@v3
120120 with :
121121 go-version : ' 1.20'
122+ - name : disk-space-setup-go
123+ run : |
124+ echo "Free space:"
125+ df -h
122126 - name : install-dependencies
123127 run : |
124128 sudo apt-get update
@@ -139,6 +143,10 @@ jobs:
139143 echo "$(pwd)" >> $GITHUB_PATH
140144 echo "$HOME/ydb/bin" >> $GITHUB_PATH
141145 echo "$HOME/go/bin" >> $GITHUB_PATH
146+ - name : disk-space-installing-deps
147+ run : |
148+ echo "Free space:"
149+ df -h
142150 - name : check-dependencies
143151 run : |
144152 gcc --version
@@ -168,6 +176,10 @@ jobs:
168176 - name : load-and-deploy-operator
169177 run : |
170178 kind load docker-image kind/ydb-operator:current --nodes kind-worker,kind-worker2,kind-worker3
179+ - name : disk-space-loading-operator
180+ run : |
181+ echo "Free space:"
182+ df -h
171183 - name : pull-and-load-kube-webhook-certgen-image
172184 uses : nick-fields/retry@v3
173185 with :
@@ -186,13 +198,20 @@ jobs:
186198 # TODO would be cool to parse YDB image from manifests to avoid duplicating information
187199 docker pull cr.yandex/crptqonuodf51kdj7a7d/ydb:23.2.12
188200 kind load docker-image cr.yandex/crptqonuodf51kdj7a7d/ydb:23.2.12 --nodes kind-worker,kind-worker2,kind-worker3
201+ - name : disk-space-loading-ydb
202+ run : |
203+ echo "Free space:"
204+ df -h
189205 - name : setup-gotestsum
190206 run : |
191207 go install gotest.tools/[email protected] 192- - name : run-e2e-tests
193- id : run-e2e-tests
208+ - name : run-tests
194209 run : |
195- gotestsum --format pkgname --jsonfile log.json -- -v -timeout 3600s -p 1 ./e2e/... -ginkgo.vv
210+ go test -v -timeout 3600s -p 1 ./e2e/... -args -ginkgo.vv
211+ # - name: run-e2e-tests
212+ # id: run-e2e-tests
213+ # run: |
214+ # gotestsum --format pkgname --jsonfile log.json -- -v -timeout 3600s -p 1 ./e2e/... -ginkgo.vv
196215 - name : convert-to-human-readable
197216 run : jq -r '.Output| gsub("[\\n]"; "")' log.json 2>/dev/null 1>log.txt || true
198217 - name : artifact-upload-step
0 commit comments