Modified previous commit ac99be3120b8b to avoid use of INTnn_MAX and … #160
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@v4 | |
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 |