Skip to content
Open
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
4 changes: 4 additions & 0 deletions .githooks/post-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh

# Reconfigure preoject
meson setup --reconfigure build
16 changes: 16 additions & 0 deletions .githooks/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/sh

# Run Clang-Format
for file in `git diff-index --cached --name-only HEAD | grep -iE '\.(cpp|cc|h|hpp)$'` ; do
clang-format -i $file
git add $file
done

# Try to compile
pushd build
if ! meson compile; then
exit 1
fi
popd

exit 0
10 changes: 0 additions & 10 deletions .github/dependabot.yml

This file was deleted.

107 changes: 0 additions & 107 deletions .github/workflows/main.yml

This file was deleted.

33 changes: 0 additions & 33 deletions CMakeLists.txt

This file was deleted.

49 changes: 0 additions & 49 deletions README.md

This file was deleted.

34 changes: 0 additions & 34 deletions bootloader/CMakeLists.txt

This file was deleted.

42 changes: 0 additions & 42 deletions bootloader/MBR/CMakeLists.txt

This file was deleted.

Loading