forked from kubestellar/kubestellar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.prow.yaml
54 lines (52 loc) · 1.32 KB
/
.prow.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
presubmits:
- name: pull-kubestellar-verify
always_run: true
decorate: true
clone_uri: "https://github.com/kubestellar/kubestellar"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.22.7-1
command:
- make
- verify-boilerplate
- verify-codegen
- verify-go-versions
- verify-imports
- verify-modules
resources:
requests:
memory: 1Gi
cpu: 1
- name: pull-kubestellar-lint
always_run: true
decorate: true
clone_uri: "https://github.com/kubestellar/kubestellar"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.22.7-1
command:
- make
- lint
resources:
requests:
memory: 4Gi
cpu: 2
- name: pull-kubestellar-test-unit
always_run: true
decorate: true
clone_uri: "https://github.com/kubestellar/kubestellar"
labels:
preset-goproxy: "true"
spec:
containers:
- image: ghcr.io/kcp-dev/infra/build:1.22.7-1
command:
- make
- test
env:
- name: USE_GOTESTSUM
value: '1'
resources:
requests:
memory: 4Gi
cpu: 2