Merge pull request #338 from sth0/sth-mem-leak #10
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 | |
- name: Configure | |
run: | | |
if [ "$RUNNER_OS" == "macOS" ]; then | |
brew install openssl | |
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 . | |