forked from SeldonIO/seldon-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jenkins-x-lint.yml
44 lines (44 loc) · 1.18 KB
/
jenkins-x-lint.yml
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
buildPack: none
pipelineConfig:
pipelines:
pullRequest:
pipeline:
agent:
image: seldonio/core-builder:0.19
stages:
- name: pr-build-comment
steps:
- agent:
image: gcr.io/jenkinsxio/builder-go:2.0.916-264
dir: ci
sh: "./add-pr-build-comment"
- name: lint-checks
parallel:
- name: lint-python
agent:
image: seldonio/python-builder:0.2
steps:
- name: lint-python
command: make
args:
- -C python
- install_dev
- lint
- name: lint-operator
agent:
image: seldonio/core-builder:0.19
steps:
- name: lint-operator
command: make
args:
- -C operator
- lint
- name: lint-executor
agent:
image: seldonio/core-builder:0.19
steps:
- name: lint-executor
command: make
args:
- -C executor
- lint