Skip to content

Workflow file for this run

name: MacOSBuild
on:
push:
branches:
- 'master'
tags:
- v*
env:
INSTALLPREFIX: "_local"
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install autotools
run: |

Check failure on line 19 in .github/workflows/macosbuild.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/macosbuild.yml

Invalid workflow file

You have an error in your yaml syntax on line 19
brew update
brew search
brew install libtool
brew install autoconf
brew install automake
- name: Configure
run: |
mkdir $INSTALLPREFIX
./reconf
./configure --prefix=$(pwd)/$INSTALLPREFIX/
- name: Build
run: |
make
make install