X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=.cirrus.yml;h=8f1451a3b32f368991f8275449556503b542d328;hb=82d951a8589b8bd5a3e61b4d0a7b70e8ef6f6231;hp=bca0a3d09921558f0db5812613657726190b68fa;hpb=5650910803b9d342054e27da888f3343c1c56087;p=bup.git diff --git a/.cirrus.yml b/.cirrus.yml index bca0a3d..8f1451a 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,6 +1,6 @@ task: - name: debian + name: debian (long) container: image: debian:buster cpu: 2 @@ -8,6 +8,33 @@ task: 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" @@ -21,7 +48,8 @@ task: script: | set -xe dev/prep-for-freebsd-build - gmake check + 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 . @@ -34,4 +62,21 @@ task: script: | set -xe dev/prep-for-macos-build - make -j2 check + 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"