forked from bup/bup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cirrus.yml
104 lines (96 loc) · 2.19 KB
/
.cirrus.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
task:
name: debian (py2)
container:
image: debian:buster
cpu: 4
memory: 2
script: |
set -xe
dev/prep-for-debianish-build python2
dev/system-info
eatmydata make -j6 PYTHON=python2 check
task:
name: debian (long py2)
container:
image: debian:buster
cpu: 4
memory: 2
script: |
set -xe
dev/prep-for-debianish-build python2
dev/system-info
adduser --disabled-password --gecos '' bup
chown -R bup:bup .
su -l bup -c "eatmydata make -j6 -C '$(pwd)' PYTHON=python2 long-check"
task:
name: debian (root py2)
container:
image: debian:buster
cpu: 4
memory: 2
script: |
set -xe
dev/prep-for-debianish-build python2
dev/system-info
adduser --disabled-password --gecos '' bup
chown -R bup:bup .
su -l bup -c "eatmydata make -j6 -C '$(pwd)' PYTHON=python2 check"
task:
name: debian (py3)
container:
image: debian:buster
cpu: 4
memory: 2
script: |
set -xe
dev/prep-for-debianish-build python3
dev/system-info
eatmydata make -j6 PYTHON=python3 check
task:
name: debian (long py3)
container:
image: debian:buster
cpu: 4
memory: 2
script: |
set -xe
dev/prep-for-debianish-build python3
dev/system-info
adduser --disabled-password --gecos '' bup
chown -R bup:bup .
su -l bup -c "eatmydata make -j6 -C '$(pwd)' PYTHON=python3 long-check"
task:
name: debian (root py3)
container:
image: debian:buster
cpu: 4
memory: 2
script: |
set -xe
dev/prep-for-debianish-build python3
dev/system-info
adduser --disabled-password --gecos '' bup
chown -R bup:bup .
su -l bup -c "eatmydata make -j6 -C '$(pwd)' PYTHON=python3 check"
task:
name: freebsd (py3)
freebsd_instance:
image: freebsd-12-2-release-amd64
cpu: 4
memory: 4
script: |
set -xe
dev/prep-for-freebsd-build python3
dev/system-info
gmake -j6 PYTHON=python3.7 check
task:
name: macos (py3)
osx_instance:
image: catalina-base
script: |
set -xe
dev/prep-for-macos-build python3
export PKG_CONFIG_PATH=/usr/local/opt/readline/lib/pkgconfig
export PYTHON=python3
dev/system-info
make -j4 PYTHON=python3 check