Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

community: add test, lint and coverage jobs #3824

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,72 @@ presubmits:
memory: "1Gi"
limits:
memory: "1Gi"
- always_run: false
cluster: kubevirt-prow-control-plane
decorate: true
extra_refs:
- org: kubevirt
repo: project-infra
base_ref: main
name: pull-community-make-lint
run_if_changed: "generators/.*|validators/.*|pkg/.*"
spec:
containers:
- args:
- make lint
command:
- "/usr/local/bin/runner.sh"
- "/bin/sh"
- "-ce"
image: quay.io/kubevirtci/golang:v20241206-ae344ab
resources:
requests:
memory: "1Gi"
limits:
memory: "1Gi"
- always_run: false
cluster: kubevirt-prow-control-plane
decorate: true
extra_refs:
- org: kubevirt
repo: project-infra
base_ref: main
name: pull-community-make-test
run_if_changed: "generators/.*|validators/.*|pkg/.*"
spec:
containers:
- args:
- make test
command:
- "/usr/local/bin/runner.sh"
- "/bin/sh"
- "-ce"
image: quay.io/kubevirtci/golang:v20241206-ae344ab
resources:
requests:
memory: "1Gi"
limits:
memory: "1Gi"
- always_run: false
cluster: kubevirt-prow-control-plane
decorate: true
extra_refs:
- org: kubevirt
repo: project-infra
base_ref: main
name: pull-community-make-coverage
run_if_changed: "generators/.*|validators/.*|pkg/.*"
spec:
containers:
- args:
- make coverage
command:
- "/usr/local/bin/runner.sh"
- "/bin/sh"
- "-ce"
image: quay.io/kubevirtci/golang:v20241206-ae344ab
resources:
requests:
memory: "1Gi"
limits:
memory: "1Gi"