Skip to content
Open
Show file tree
Hide file tree
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
13 changes: 13 additions & 0 deletions prow/config/jobs/metal3-io/baremetal-operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,19 @@ presubmits:
- make
image: quay.io/metal3-io/basic-checks:golang-1.24
imagePullPolicy: Always
- name: generate-api-docs
branches:
- main
run_if_changed: '(config/base/crds/bases/.*|^Makefile|hack/gen-api-doc\.sh)$*'
decorate: true
spec:
containers:
- args:
- ./hack/gen-api-docs.sh
command:
- sh
image: ghcr.io/fybrik/crdoc:0.6.2@sha256:355ef777a45021ee864e613b2234b4f2c6193762e3e0de94a26b66d06cec81c3
imagePullPolicy: Always
- name: manifestlint
branches:
- main
Expand Down
2 changes: 1 addition & 1 deletion prow/container-images/basic-checks/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ FROM docker.io/golang:${GO_VERSION}
# Install additional packages not present in regular golang image
RUN apt-get update \
&& apt-get -y upgrade \
&& apt-get install -y libvirt-dev podman \
&& apt-get install -y libvirt-dev \
&& apt-get clean