diff --git a/.github/workflows/ci-fortuno.yml b/.github/workflows/ci-fortuno.yml index 170dc5b..f6cc6ed 100644 --- a/.github/workflows/ci-fortuno.yml +++ b/.github/workflows/ci-fortuno.yml @@ -59,7 +59,7 @@ jobs: - name: Setup build tools run: | - pip install cmake fpm meson ninja fypp + pip install cmake - name: Build Fortuno run: | @@ -69,6 +69,13 @@ jobs: cmake --install ${BUILD_DIR} rm -rf ${BUILD_DIR} + - name: Build Your Integration + run: | + mkdir -p ${BUILD_DIR} + cmake -B ${BUILD_DIR} -DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} -DCMAKE_PREFIX_PATH=${INSTALL_DIR} -DFORTUNO_WITH_SERIAL=ON + cmake --build ${BUILD_DIR} + cmake --install ${BUILD_DIR} + - name: Run tests run: | cd ${BUILD_DIR}/app