From bdf091d455b2111ac61e7917af00418386188778 Mon Sep 17 00:00:00 2001 From: Karthik Menon Date: Fri, 1 Sep 2023 11:53:29 -0700 Subject: [PATCH] add cmake build to github workflows --- .github/workflows/test.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5b3fbf560..c626df55c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,6 +23,12 @@ jobs: - name: Test the build run: | conda run -n zerod pytest tests/test_integration_cpp.py + - name: Build using CMake + run: | + mkdir Release + cd Release + cmake -DCMAKE_BUILD_TYPE=Release .. + cmake --build . - name: Test interface run: | cd tests/test_interface/test_01/