mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2026-01-03 09:59:29 +00:00
first GitHub CI
This commit is contained in:
25
.github/workflows/build-macos.yml
vendored
Normal file
25
.github/workflows/build-macos.yml
vendored
Normal file
@@ -0,0 +1,25 @@
|
||||
name: Build macOS
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: macos-11
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
- name: Install basic dependencies
|
||||
run: brew install automake autoconf libtool bison flex
|
||||
- name: Build dependencies
|
||||
shell: bash
|
||||
run: |
|
||||
export PATH=/usr/local/opt/flex/bin:/usr/local/opt/bison/bin:${PATH}
|
||||
cd ci-scripts
|
||||
./install-deps.sh prefix 6
|
||||
- name: Build LatAnalyze
|
||||
shell: bash
|
||||
run: |
|
||||
cd ci-scripts
|
||||
./install-latan.sh prefix 6
|
||||
Reference in New Issue
Block a user