Skip to content

Commit e20aea2

Browse files
authored
Merge pull request #82 from embik/prow-migration
🌱 Add .prow.yaml, migrate to kcp-prow
2 parents 7e515e7 + 747e478 commit e20aea2

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-code-generator-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: ghcr.io/kcp-dev/infra/build:1.19.9-1
11+
command:
12+
- make
13+
- verify-codegen
14+
- verify-boilerplate
15+
16+
- name: pull-code-generator-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: ghcr.io/kcp-dev/infra/build:1.19.9-1
25+
command:
26+
- make
27+
- lint
28+
29+
- name: pull-code-generator-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: ghcr.io/kcp-dev/infra/build:1.19.9-1
38+
command:
39+
- make
40+
- test

0 commit comments

Comments
 (0)