From 3f2a38b01184cae9a931280b534acf5a3dae2e94 Mon Sep 17 00:00:00 2001 From: Charalampos Mitrodimas Date: Mon, 8 Apr 2024 11:40:02 +0300 Subject: [PATCH] CI: added Solaris build Signed-off-by: Charalampos Mitrodimas --- .github/workflows/solaris-build.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/solaris-build.yml diff --git a/.github/workflows/solaris-build.yml b/.github/workflows/solaris-build.yml new file mode 100644 index 00000000..4ef3b2cf --- /dev/null +++ b/.github/workflows/solaris-build.yml @@ -0,0 +1,27 @@ +name: Test rsync on Solaris + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + solaris-test: + runs-on: ubuntu-latest + name: Test rsync on Solaris + steps: + - uses: actions/checkout@v4 + - name: Test in Solaris + id: test + uses: vmactions/solaris-vm@v1 + with: + usesh: true + prepare: | + pkg install bash automake gnu-m4 wget pkg://solaris/runtime/python-35 autoconf gcc + run: | + uname -a + ./configure --with-rrsync -disable-zstd --disable-md2man --disable-xxhash --disable-lz4 + make + ./rsync --version + ./rsync-ssl --no-motd download.samba.org::rsyncftp/ || true -- 2.47.2