diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 16:14:31 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 16:14:31 +0000 |
commit | 2d5707c7479eacb3b1ad98e01b53f56a88f8fb78 (patch) | |
tree | d9c334e83692851c02e3e1b8e65570c97bc82481 /.cirrus.yml | |
parent | Initial commit. (diff) | |
download | rsync-2d5707c7479eacb3b1ad98e01b53f56a88f8fb78.tar.xz rsync-2d5707c7479eacb3b1ad98e01b53f56a88f8fb78.zip |
Adding upstream version 3.2.7.upstream/3.2.7
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.cirrus.yml b/.cirrus.yml new file mode 100644 index 0000000..33e2685 --- /dev/null +++ b/.cirrus.yml @@ -0,0 +1,23 @@ +freebsd_task: + name: FreeBSD + freebsd_instance: + image_family: freebsd-13-1 + env: + PATH: /usr/local/bin:$PATH + prep_script: + - dd if=/dev/zero of=/tmp/zpool bs=1M count=1024 + - zpool create -m `pwd`/testtmp zpool /tmp/zpool + - pkg install -y bash autotools m4 xxhash zstd liblz4 wget + - wget -O git-version.h https://gist.githubusercontent.com/WayneD/c11243fa374fc64d4e42f2855c8e3827/raw/rsync-git-version.h + configure_script: + - CPPFLAGS=-I/usr/local/include/ LDFLAGS=-L/usr/local/lib/ ./configure --disable-md2man + make_script: + - make + install_script: + - make install + info_script: + - rsync --version + test_script: + - RSYNC_EXPECT_SKIPPED=acls-default,acls,crtimes,protected-regular make check + ssl_file_list_script: + - rsync-ssl --no-motd download.samba.org::rsyncftp/ || true |