Setup CI for the mex wrapper code

This commit is contained in:
Davis King 2023-07-21 08:46:29 -04:00
parent 3cca5df0fd
commit 3a31de7dbd
1 changed files with 13 additions and 0 deletions

View File

@ -247,3 +247,16 @@ jobs:
run: build/dtest --runall --no_test_timer -q
- name: Build examples, etc
run: cmake --build build --config Release --parallel 2
mex-wrapper:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2
- name: Compile mex wrappers
uses: matlab-actions/run-command@v1
run: |
cd ../matlab
mkdir build
cd build
cmake ..
cmake --build build --config Release --target install --parallel 4