-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitlab-ci.yml
56 lines (50 loc) · 1.28 KB
/
.gitlab-ci.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
45
46
47
48
49
50
51
52
53
54
55
56
# Defines stages which are to be executed
image: quay.io/pypa/manylinux2010_x86_64
stages:
- build_wheel
build_wheel_27m:
stage: build_wheel
script:
- /opt/python/cp27-cp27m/bin/pip wheel . -w output
- auditwheel repair output/onda*whl -w output/repaired
artifacts:
paths:
- output/repaired/onda*whl
only:
- tags
build_wheel_27mu:
stage: build_wheel
script:
- /opt/python/cp27-cp27mu/bin/pip wheel . -w output
- auditwheel repair output/onda*whl -w output/repaired
artifacts:
paths:
- output/repaired/onda*whl
build_wheel_35m:
stage: build_wheel
script:
- /opt/python/cp35-cp35m/bin/pip wheel .[GUI] -w output
- auditwheel repair output/onda*whl -w output/repaired
artifacts:
paths:
- output/repaired/onda*whl
only:
- tags
build_wheel_36m:
stage: build_wheel
script:
- /opt/python/cp36-cp36m/bin/pip wheel .[GUI] -w output
- auditwheel repair output/onda*whl -w output/repaired
artifacts:
paths:
- output/repaired/onda*whl
only:
- tags
build_wheel_37m:
stage: build_wheel
script:
- /opt/python/cp37-cp37m/bin/pip wheel .[GUI] -w output
- auditwheel repair output/onda*whl -w output/repaired
artifacts:
paths:
- output/repaired/onda*whl