sth fixes - one memory crash and some formatting and build options #13
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ ubuntu-18.04, ubuntu-20.04, macos-10.15, macos-11 ] | |
name: ${{ matrix.os }} radmind | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Configure | |
run: | | |
if [ "$RUNNER_OS" == "macOS" ]; then | |
brew install openssl cyrus-sasl autoconf | |
sudo ln -s /usr/local/opt/openssl /usr/local/openssl | |
fi | |
sh bootstrap.sh | |
./configure | |
- name: Build | |
run: | | |
make | |
- name: Install | |
run: | | |
sudo make install | |
- name: Test | |
run: | | |
fsdiff -c sha1 -K /dev/null . | |