forked from SeldonIO/seldon-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjenkins-x.yml
40 lines (40 loc) · 1.09 KB
/
jenkins-x.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
buildPack: none
pipelineConfig:
pipelines:
pullRequest:
pipeline:
agent:
image: seldonio/core-builder:0.3
stages:
- name: build-and-test
parallel:
- name: seldon-python
agent:
image: seldonio/python-builder:0.2
steps:
- name: test-python
command: make
args:
- -C
- python
- update_package &&
- make
- -C
- python
- install-dev &&
- make
- -C
- python
- test
- name: seldon-engine
agent:
image: seldonio/core-builder:0.3
steps:
- name: test-engine
command: make
args:
- -C
- engine
- -f
- Makefile.ci
- build_jar