diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2025-04-07 12:45:54 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2025-04-17 12:09:19 -0400 |
commit | 4e7fcc27040da2ae72bf44b445a97bf9a981dd98 (patch) | |
tree | a3ec987444eb67b93ef7ea696f39347aeee4d78a /scripts/ci-build.sh | |
parent | 871637d3f2362ce839f3018040eda670f6a10dd9 (diff) | |
download | kutter-4e7fcc27040da2ae72bf44b445a97bf9a981dd98.tar.gz kutter-4e7fcc27040da2ae72bf44b445a97bf9a981dd98.tar.xz kutter-4e7fcc27040da2ae72bf44b445a97bf9a981dd98.zip |
check-software-div: Add a new build check for software divide
Update the build checks to include a check for unexpected software
divide operations.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts/ci-build.sh')
-rwxr-xr-x | scripts/ci-build.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/ci-build.sh b/scripts/ci-build.sh index ec37cbe0..b09b3ef7 100755 --- a/scripts/ci-build.sh +++ b/scripts/ci-build.sh @@ -56,6 +56,7 @@ for TARGET in test/configs/*.config ; do make olddefconfig make V=1 size out/*.elf + ./scripts/check-software-div.sh .config out/*.elf finish_test mcu_compile "$TARGET" cp out/klipper.dict ${DICTDIR}/$(basename ${TARGET} .config).dict done |