summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
blob: fbab5cd4ff8cae2da206acf4cee33d9d872c3bdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: build

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:

  linux-build:
    runs-on: ubuntu-20.04
    steps:
    - uses: actions/checkout@v2
    - name: prep
      run: sudo apt-get install acl libacl1-dev attr libattr1-dev
        liblz4-dev libzstd-dev libxxhash-dev python3-cmarkgfm openssl
    - name: configure
      run: ./configure --with-included-popt --with-included-zlib
    - name: make
      run: make
    - name: install
      run: sudo make install
    - name: info
      run: /usr/local/bin/rsync --version
    - name: check
      run: sudo make check
    - name: check30
      run: sudo make check30
    - name: check29
      run: sudo make check29
    - name: ssl file list
      run: /usr/local/bin/rsync-ssl --no-motd download.samba.org::rsyncftp/ || true

  macos-build:
    runs-on: macos-latest
    steps:
    - uses: actions/checkout@v2
    - name: prep
      run: |
        brew install automake openssl xxhash zstd lz4
        sudo pip3 install commonmark
    - name: configure
      run: CPPFLAGS=-I/usr/local/opt/openssl/include/ LDFLAGS=-L/usr/local/opt/openssl/lib/ ./configure
    - name: make
      run: make
    - name: install
      run: sudo make install
    - name: info
      run: /usr/local/bin/rsync --version
    - name: check
      run: sudo make check
    - name: ssl file list
      run: /usr/local/bin/rsync-ssl --no-motd download.samba.org::rsyncftp/ || true