diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 89d95c1..251fb1a 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -60,6 +60,21 @@ jobs: cmake -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} .. cmake --build . --config ${{env.BUILD_TYPE}} cd ../../.. + + - name: Checkout SBVA + uses: actions/checkout@v2 + with: + repository: meelgroup/sbva + ref: master + path: sbva + + - name: Build SBVA + run: | + cd sbva + mkdir build && cd build + cmake .. + make -j8 + cd ../.. - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.