GitHub: Fix osx build

This commit is contained in:
Nicolas Williams
2022-01-15 21:23:26 -06:00
parent a31db2af0d
commit 4b3f8266d7
2 changed files with 8 additions and 0 deletions

View File

@@ -87,6 +87,7 @@ jobs:
MAKEVARS: ${{ matrix.makevars }} MAKEVARS: ${{ matrix.makevars }}
CONFIGURE_OPTS: ${{ matrix.configureopts }} CONFIGURE_OPTS: ${{ matrix.configureopts }}
run: | run: |
cd build
make check make check
- name: Install - name: Install
run: | run: |

View File

@@ -48,6 +48,13 @@ jobs:
(cd lib/libedit && make -j4) (cd lib/libedit && make -j4)
(cd lib/sqlite && make -j4) (cd lib/sqlite && make -j4)
scan-build --keep-going make -j4 scan-build --keep-going make -j4
- name: Test
env:
CC: ${{ matrix.compiler }}
MAKEVARS: ${{ matrix.makevars }}
run: |
cd build
ulimit -c unlimited
scan-build --keep-going make check scan-build --keep-going make check
- name: Upload Artifacts - name: Upload Artifacts
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2