We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9505ac5 commit 99673f9Copy full SHA for 99673f9
.github/workflows/freebsd-build.yml
@@ -0,0 +1,23 @@
1
+name: Test rsync on FreeBSD
2
+
3
+on: [push]
4
5
+jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ name: Test rsync on FreeBSD
9
+ steps:
10
+ - uses: actions/checkout@v4
11
+ - name: Test in FreeBSD
12
+ id: test
13
+ uses: vmactions/freebsd-vm@v1
14
+ with:
15
+ usesh: true
16
+ prepare: |
17
+ pkg install -y bash autotools m4 devel/xxhash zstd liblz4 wget python3 archivers/liblz4
18
+ run: |
19
+ freebsd-version
20
+ ./configure --with-rrsync -disable-zstd --disable-md2man --disable-xxhash --disable-lz4
21
+ make
22
+ ./rsync --version
23
+ ./rsync-ssl --no-motd download.samba.org::rsyncftp/ || true
0 commit comments