Skip to content

github: On macos, make sure configure is newer than other stuff #5

github: On macos, make sure configure is newer than other stuff

github: On macos, make sure configure is newer than other stuff #5

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: Configure
run: |
mkdir $INSTALLPREFIX
touch configure
./configure --prefix=$(pwd)/$INSTALLPREFIX/
- name: Build
run: |
make
make install