Skip to content

Commit

Permalink
Merge pull request kubernetes#23109 from RinkiyaKeDad/update_depstat_…
Browse files Browse the repository at this point in the history
…jobs

updating depstat jobs to include all staging modules
  • Loading branch information
k8s-ci-robot authored Aug 5, 2021
2 parents d15451c + 40a5837 commit 6d524ae
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ periodics:
go install github.com/kubernetes-sigs/depstat@latest
popd
depstat stats --json | tee "${WORKDIR}/stats-base.json";
depstat stats -m "k8s.io/kubernetes$(ls staging/src/k8s.io | awk '{printf ",k8s.io/" $0}')" --json | tee "${WORKDIR}/stats-base.json";
annotations:
testgrid-create-test-group: "true"
testgrid-dashboards: sig-testing-misc
Expand Down
4 changes: 2 additions & 2 deletions config/jobs/kubernetes/sig-arch/kubernetes-depstat.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ presubmits:
go install github.com/kubernetes-sigs/depstat@latest
popd
depstat stats --json > "${WORKDIR}/stats.json"
depstat stats -m "k8s.io/kubernetes$(ls staging/src/k8s.io | awk '{printf ",k8s.io/" $0}')" --json > "${WORKDIR}/stats.json"
git reset --hard HEAD
git checkout -b base "${PULL_BASE_SHA}"
depstat stats --json > "${WORKDIR}/stats-base.json"
depstat stats -m "k8s.io/kubernetes$(ls staging/src/k8s.io | awk '{printf ",k8s.io/" $0}')" --json > "${WORKDIR}/stats-base.json"
diff -s -u --ignore-all-space "${WORKDIR}"/stats-base.json "${WORKDIR}"/stats.json || true
annotations:
testgrid-create-test-group: "true"
Expand Down

0 comments on commit 6d524ae

Please sign in to comment.