Skip to content

The code to extract a lat/lon/alt location from a text string is a li… #123

The code to extract a lat/lon/alt location from a text string is a li…

The code to extract a lat/lon/alt location from a text string is a li… #123

name: Build
on: [push, pull_request]
jobs:
buildUbuntu:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: make
run: make ERRORS=Y
- name: Archive lib
uses: actions/upload-artifact@v2
with:
name: lib
path: liblunar.a
buildOSX:
runs-on: macOS-latest
steps:
- uses: actions/checkout@master
- name: make
run: make CLANG=Y ERRORS=Y
buildWindows:
runs-on: windows-latest
steps:
- uses: actions/checkout@master
- name: make
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
nmake -f lunar.mak
shell: cmd