'add_off.c' comment change : mentioned that in hindsight, Horizon's … #144
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |