-
Notifications
You must be signed in to change notification settings - Fork 5
/
cloudbuild.yaml
79 lines (69 loc) · 1.41 KB
/
cloudbuild.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
steps:
- name: 'python:2.7'
args: ['bash', 'docker/run_tests.sh']
id: py27_without_cython
waitFor: ['-']
env:
- DISABLE_CYTHON=1
- name: 'python:2.7'
args: ['bash', 'docker/run_tests.sh']
id: py27_with_cython
waitFor: ['-']
env:
- FORCE_CYTHON=1
- name: 'python:3.4'
args: ['bash', 'docker/run_tests.sh']
id: py34_without_cython
waitFor: ['-']
env:
- DISABLE_CYTHON=1
- PYTHON3=1
- name: 'python:3.4'
args: ['bash', 'docker/run_tests.sh']
id: py34_with_cython
waitFor: ['-']
env:
- FORCE_CYTHON=1
- PYTHON3=1
- name: 'python:3.5'
args: ['bash', 'docker/run_tests.sh']
id: py35_without_cython
waitFor: ['-']
env:
- DISABLE_CYTHON=1
- PYTHON3=1
- name: 'python:3.5'
args: ['bash', 'docker/run_tests.sh']
id: py35_with_cython
waitFor: ['-']
env:
- FORCE_CYTHON=1
- PYTHON3=1
- name: 'python:3.6'
args: ['bash', 'docker/run_tests.sh']
id: py36_without_cython
waitFor: ['-']
env:
- DISABLE_CYTHON=1
- PYTHON3=1
- name: 'python:3.6'
args: ['bash', 'docker/run_tests.sh']
waitFor: ['-']
id: py36_with_cython
env:
- FORCE_CYTHON=1
- PYTHON3=1
- name: 'python:3.7'
args: ['bash', 'docker/run_tests.sh']
id: py37_without_cython
waitFor: ['-']
env:
- DISABLE_CYTHON=1
- PYTHON3=1
- name: 'python:3.7'
args: ['bash', 'docker/run_tests.sh']
waitFor: ['-']
id: py37_with_cython
env:
- FORCE_CYTHON=1
- PYTHON3=1