Skip to content

Commit

Permalink
BLD Use GH Actions to build on MacOSX
Browse files Browse the repository at this point in the history
Build a MacOSX version using GH which can then be downloaded as an
artefact.
  • Loading branch information
psj1997 authored and luispedro committed Aug 10, 2020
1 parent 63b7f02 commit 5153dcc
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build_macosx.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: NGLess MacOSX Build

on: [push]

jobs:
job_1:
name: Build and install NGLess
runs-on: macOS-latest

steps:
- uses: actions/checkout@v1
- name: before_install
run: |
brew install gcc@8
brew install md5sha1sum
- name: install
run: |
stack setup
make
make install CXX=g++-8 prefix=ngless_path/ngless
- name: upload
uses: actions/upload-artifact@v2
with:
name: ngless_install
path: ngless_path/ngless

0 comments on commit 5153dcc

Please sign in to comment.