Skip to content

more

more #13

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: |
brew update
brew search /.*dns.*/
brew install libtool
brew install autoconf
brew install automake
- name: Configure
run: |
mkdir $INSTALLPREFIX
./reconf
./configure --prefix=$(pwd)/$INSTALLPREFIX/
--with-cplusplus-ver=201103
- name: Build
run: |
make
make install