Skip to content

Commit 037729b

Browse files
committed
update benchmark-dockerized.sh and verify-dockerized.sh
update pull request
1 parent dca968b commit 037729b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

hack/jenkins/benchmark-dockerized.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ cd /go/src/k8s.io/kubernetes
5757
make test-integration WHAT="$*" KUBE_TEST_ARGS="-run='XXX' -bench=. -benchmem" \
5858
| tee \
5959
>(prettybench -no-passthrough > "${ARTIFACTS}/BenchmarkResults.txt") \
60-
>(go run test/integration/benchmark/jsonify/main.go "${ARTIFACTS}"/BenchmarkResults_benchmark_"$(date -u +%Y-%m-%dT%H:%M:%SZ)".json || cat > /dev/null)
60+
>(go run test/integration/benchmark/jsonify/main.go "${ARTIFACTS}/BenchmarkResults_benchmark_$(date -u +%Y-%m-%dT%H:%M:%SZ).json" || cat > /dev/null)

hack/jenkins/verify-dockerized.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ set -o xtrace
2121

2222
retry() {
2323
for i in {1..5}; do
24-
if "$@"
25-
then
24+
if "$@"; then
2625
return 0
2726
else
2827
sleep "${i}"

0 commit comments

Comments
 (0)