add buffersize argument to rdfind (slightly modified version of trollkarlen's MR) #194
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: mac os x default build | |
"on": | |
push: | |
branches: | |
- main | |
- devel | |
pull_request: | |
jobs: | |
build: | |
name: Test on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: install packages | |
run: brew install nettle automake autoconf | |
- name: bootstrap | |
run: ./bootstrap.sh | |
- name: configure | |
run: ./configure --enable-warnings CXXFLAGS="-std=c++17 -I$(brew --prefix nettle)/include -L$(brew --prefix nettle)/lib" | |
- name: make | |
run: make | |
# tests fail because readlink does not understand -f on mac | |
# install greadlink and use that instead ? | |
# - name: make check | |
# run: make check | |
# - name: make distcheck | |
# run: make distcheck CXXFLAGS=-std=c++11 | |
- name: Upload a Build Artifact | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v4 | |
with: | |
path: '**/*.log' |