Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/build-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,15 @@ jobs:
- name: Build pull request version
if: github.event_name == 'pull_request'
run: |
cmake -S . -B ./build ${{ matrix.cmake_args }} -DCMAKE_BUILD_TYPE=Debug -DCOPY_AFTER_BUILD=FALSE -DGITHUB_ACTIONS_BUILD=TRUE
cmake -S . -B ./build ${{ matrix.cmake_args }} -DCMAKE_BUILD_TYPE=Debug -DCOPY_AFTER_BUILD=FALSE -DGITHUB_ACTIONS_BUILD=TRUE
cmake --build ./build --config Debug --target ${TARGET_NAME}-installer --parallel 3

- name: Build and run tests
if: github.event_name == 'pull_request'
run: |
cmake --build ./build --config Debug --target six-sines-test --parallel 3
./build/tests/six-sines-test

- name: Build release version
if: github.event_name != 'pull_request'
run: |
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ cmake-*/
ignore/
minst*.sh
BUILD_VERSION
CLAUDE.md
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ endif()
target_link_libraries(${PROJECT_NAME}-impl PUBLIC
clap
)
target_link_libraries(${PROJECT_NAME}-impl PRIVATE
target_link_libraries(${PROJECT_NAME}-impl PUBLIC # PW change to public since we now have tests
simde
clap-helpers clap-wrapper-extensions
mts-esp-client
Expand Down Expand Up @@ -139,6 +139,8 @@ add_clapfirst_installer(
${PROJECT_NAME}_standalone
)

add_subdirectory(tests EXCLUDE_FROM_ALL)




Expand Down
3 changes: 3 additions & 0 deletions libs/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
add_subdirectory(sst/sst-cmake)

add_library(catch2 INTERFACE)
target_include_directories(catch2 INTERFACE catch2/include)

add_subdirectory(clap-libs/clap EXCLUDE_FROM_ALL)
add_subdirectory(clap-libs/clap-helpers EXCLUDE_FROM_ALL)
add_subdirectory(fmt EXCLUDE_FROM_ALL)
Expand Down
Loading
Loading