Skip to content

Commit 3c946db

Browse files
committed
migrate to prow job configuration
Signed-off-by: Marvin Beckers <[email protected]>
1 parent 7e515e7 commit 3c946db

File tree

2 files changed

+40
-4
lines changed

2 files changed

+40
-4
lines changed

.ci-operator.yaml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.prow.yaml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
presubmits:
2+
- name: pull-codegenerator-verify
3+
always_run: true
4+
decorate: true
5+
clone_uri: "ssh://[email protected]/kcp-dev/code-generator.git"
6+
labels:
7+
preset-goproxy: "true"
8+
spec:
9+
containers:
10+
- image: docker.io/library/go:1.19.9-alpine
11+
command:
12+
- make
13+
- verify-codegen
14+
- verify-boilerplate
15+
16+
- name: pull-codegenerator-lint
17+
always_run: true
18+
decorate: true
19+
clone_uri: "ssh://[email protected]/kcp-dev/code-generator.git"
20+
labels:
21+
preset-goproxy: "true"
22+
spec:
23+
containers:
24+
- image: docker.io/library/go:1.19.9-alpine
25+
command:
26+
- make
27+
- lint
28+
29+
- name: pull-codegenerator-test
30+
always_run: true
31+
decorate: true
32+
clone_uri: "ssh://[email protected]/kcp-dev/code-generator.git"
33+
labels:
34+
preset-goproxy: "true"
35+
spec:
36+
containers:
37+
- image: docker.io/library/go:1.19.9-alpine
38+
command:
39+
- make
40+
- test

0 commit comments

Comments
 (0)