-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cirrus.yml
82 lines (76 loc) · 1.71 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
task:
name: debian (long)
container:
image: debian:buster
cpu: 2
memory: 8
script: |
set -xe
dev/prep-for-debianish-build
dev/system-info
adduser --disabled-password --gecos '' bup
chown -R bup:bup .
su -l bup -c "eatmydata make -j3 -C '$(pwd)' long-check"
task:
name: debian (root)
container:
image: debian:buster
cpu: 2
memory: 8
script: |
set -xe
dev/prep-for-debianish-build
dev/system-info
eatmydata make -j3 check
task:
name: debian (xattr)
container:
image: debian:buster
cpu: 2
memory: 8
script: |
set -xe
dev/prep-for-debianish-build python2 xattr
dev/system-info
adduser --disabled-password --gecos '' bup
chown -R bup:bup .
su -l bup -c "eatmydata make -j3 -C '$(pwd)' check"
task:
name: freebsd
freebsd_instance:
image: freebsd-12-1-release-amd64
cpu: 2
memory: 8
script: |
set -xe
dev/prep-for-freebsd-build
dev/system-info
gmake -j3 check
# It looks like su might not work here...
#pw useradd -n bup -s /bin/sh -m -w no
#chown -R bup .
#su -l bup -c "gmake -j3 -C '$PWD' check"
task:
name: macos
osx_instance:
image: mojave-xcode-10.2
script: |
set -xe
dev/prep-for-macos-build
dev/system-info
make -j3 check
task:
name: debian (python 3 - under construction)
container:
image: debian:buster
cpu: 2
memory: 8
script: |
set -xe
dev/prep-for-debianish-build python3
dev/system-info
adduser --disabled-password --gecos '' bup
chown -R bup:bup .
testcmd='BUP_ALLOW_UNEXPECTED_PYTHON_VERSION=true PYTHON=python3'
testcmd="$testcmd eatmydata make -j3 -C '$(pwd)' check"
su -l bup -c "$testcmd"