Load old style index files. #54
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 MacOS | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: macOS-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- id: INSTALL_MACFUSE | |
run: brew install --cask macfuse | |
- id: INSTALL_ADDITIONAL_BUILD_DEPENDENCIES | |
run: brew install bash findutils coreutils rsync librsync openssl imagemagick ffmpeg exiv2 gawk gnu-sed gnu-tar | |
- id: CONFIGURE | |
run: ./configure --disable-fuse | |
- id: CHECK | |
run: find build -name "libfuse*" | |
- id: CAT | |
run: cat build/x86_64-apple-darwin21.6.0/spec.mk | |
- id: MAKE | |
run: make VERBOSE= | |
- id: TEST | |
run: make test |