-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13509 from akutz/feature/capv-shellcheck
Add shell linting for CAPV
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -129,6 +129,22 @@ presubmits: | |
testgrid-alert-email: [email protected] | ||
description: Verifies the markdown has been linted | ||
|
||
- name: pull-cluster-api-provider-vsphere-verify-shell | ||
always_run: false | ||
run_if_changed: '.*\.\w*sh$' | ||
decorate: true | ||
path_alias: sigs.k8s.io/cluster-api-provider-vsphere | ||
spec: | ||
containers: | ||
- image: gcr.io/cluster-api-provider-vsphere/extra/shellcheck:v0.6.0 | ||
command: | ||
- /bin/shellcheck.sh | ||
annotations: | ||
testgrid-dashboards: vmware-cluster-api-provider-vsphere, sig-cluster-lifecycle-cluster-api-provider-vsphere | ||
testgrid-tab-name: pr-verify-shell | ||
testgrid-alert-email: [email protected] | ||
description: Verifies the shell scripts have been linted | ||
|
||
- name: pull-cluster-api-provider-vsphere-verify-crds | ||
always_run: false | ||
run_if_changed: '^((config|pkg|vendor)/)|hack/verify-crds\.sh' | ||
|