More CI tweaks

- Add to ubuntu build: make install & rsync-ssl test run
- Don't fail a build if samba.org daemon list has an issue.
This commit is contained in:
Wayne Davison
2020-07-11 16:05:34 -07:00
parent 4f5742baa0
commit 8b25488fe9
2 changed files with 11 additions and 6 deletions

View File

@@ -7,7 +7,7 @@ task:
- ln -s /usr/local/bin/bash /bin/bash
configure_script:
- CPPFLAGS=-I/usr/local/include/ LDFLAGS=-L/usr/local/lib/ ./configure --disable-md2man
build_script:
make_script:
- make
install_script:
- make install
@@ -15,5 +15,5 @@ task:
- /usr/local/bin/rsync --version
test_script:
- make check
ssl_script:
- /usr/local/bin/rsync-ssl --no-motd download.samba.org::rsyncftp/
ssl_file_list_script:
- /usr/local/bin/rsync-ssl --no-motd download.samba.org::rsyncftp/ || true

View File

@@ -14,18 +14,23 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: prepare-packages
run: sudo apt-get install fakeroot acl libacl1-dev attr libattr1-dev liblz4-dev libzstd-dev libxxhash-dev python3-cmarkgfm
run: sudo apt-get install fakeroot acl libacl1-dev attr libattr1-dev liblz4-dev libzstd-dev \
libxxhash-dev python3-cmarkgfm openssl
- name: prepare-source
run: ./prepare-source
- name: configure
run: ./configure --with-included-popt --with-included-zlib
- name: make
run: make
- name: version-summary
run: ./rsync --version
- name: install
run: sudo make install
- name: info
run: /usr/local/bin/rsync --version
- name: make check
run: make check
- name: make check30
run: make check30
- name: make check29
run: make check29
- name: ssl file list
run: /usr/local/bin/rsync-ssl --no-motd download.samba.org::rsyncftp/ || true