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

CI config for ocm-container cli #51386

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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -0,0 +1,44 @@
base_images:
base:
name: ubi
namespace: ocp
tag: "8"
openshift_release_golang-1.22:
name: release
namespace: openshift
tag: golang-1.22
build_root:
from_repository: true
images:
- dockerfile_path: Dockerfile
from: base
inputs:
openshift_release_golang-1.22:
as:
- registry.ci.openshift.org/openshift/release:golang-1.22
to: unused
resources:
'*':
requests:
cpu: 100m
memory: 200Mi
tests:
- as: lint
commands: |
make format
container:
from: src
- as: test
commands: |
make test
container:
from: src
- as: build
commands: |
make ci-go_build
container:
from: src
zz_generated_metadata:
branch: master
org: openshift
repo: ocm-container