We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5510255 commit 3f2a38bCopy full SHA for 3f2a38b
.github/workflows/solaris-build.yml
@@ -0,0 +1,27 @@
1
+name: Test rsync on Solaris
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ solaris-test:
11
+ runs-on: ubuntu-latest
12
+ name: Test rsync on Solaris
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - name: Test in Solaris
16
+ id: test
17
+ uses: vmactions/solaris-vm@v1
18
+ with:
19
+ usesh: true
20
+ prepare: |
21
+ pkg install bash automake gnu-m4 wget pkg://solaris/runtime/python-35 autoconf gcc
22
+ run: |
23
+ uname -a
24
+ ./configure --with-rrsync -disable-zstd --disable-md2man --disable-xxhash --disable-lz4
25
+ make
26
+ ./rsync --version
27
+ ./rsync-ssl --no-motd download.samba.org::rsyncftp/ || true
0 commit comments