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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Check format
run: |
find src test example \( -name '*.c' -o -name '*.h' \) -print0 | \
find src test examples \( -name '*.c' -o -name '*.h' \) -print0 | \
xargs -0 clang-format-21 --dry-run -Werror

c-build-and-test:
Expand Down
1 change: 0 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ if(ODT_TOP_LEVEL_PROJECT)
add_ctest()

add_subdirectory(test/unit)
add_subdirectory(example)
if(BUILD_EXAMPLES)
add_subdirectory(examples)
endif()
Expand Down
2 changes: 1 addition & 1 deletion devenv.nix
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ in
echo "$matches"
exit 1
fi
find src test example \( -name '*.c' -o -name '*.h' \) -print0 \
find src test examples \( -name '*.c' -o -name '*.h' \) -print0 \
| xargs -0 clang-format --dry-run -Werror
CC=gcc cmake --preset unit_test
cmake --build --preset unit_test
Expand Down
47 changes: 0 additions & 47 deletions example/CMakeLists.txt

This file was deleted.

192 changes: 0 additions & 192 deletions example/MnistExperiment.c

This file was deleted.

Loading