File tree 1 file changed +9
-4
lines changed
1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -107,16 +107,16 @@ jobs:
107
107
108
108
- run :
109
109
name : Vendor github.com/googleapis/gnostic for k8s.io/client-go
110
- # This step checks out k8s.io/client-go and vendors
110
+ # This step checks out k8s.io/client-go and vendors
111
111
# github.com/googleapis/gnostic to fix a breaking change made in
112
112
# gnostic. See kubernetes/client-go#741
113
113
# TODO(knusbaum): remove this once the breaking change is resolved or propagated
114
114
command : |
115
115
git clone --branch v0.17.3 https://github.com/kubernetes/client-go $GOPATH/src/k8s.io/client-go
116
116
git clone --branch v0.17.3 https://github.com/kubernetes/apimachinery $GOPATH/src/k8s.io/apimachinery
117
117
git clone --branch v0.4.0 https://github.com/googleapis/gnostic $GOPATH/src/k8s.io/client-go/vendor/github.com/googleapis/gnostic
118
-
119
- # CircleCI recommends caches be ~500MB. We split the cache into
118
+
119
+ # CircleCI recommends caches be ~500MB. We split the cache into
120
120
# two parts to achieve this.
121
121
# We specifically do not cache gopkg.in to avoid caching Datadog
122
122
# We can cache other packages here or wait to move to go modules
@@ -206,4 +206,9 @@ jobs:
206
206
- run :
207
207
name : Testing
208
208
command : |
209
- INTEGRATION=1 go test -v -race `go list ./...`
209
+ mkdir /tmp/test-results
210
+ INTEGRATION=1 gotestsum --junitfile /tmp/test-results/result.xml -- -race `go list ./...`
211
+ - store_artifacts :
212
+ path : /tmp/test-results
213
+ - store_test_results :
214
+ path : /tmp/test-results
You can’t perform that action at this time.
0 commit comments