mirror of
https://github.com/andreili/katapult.git
synced 2025-08-23 19:34:06 +02:00
19 lines
426 B
Bash
Executable File
19 lines
426 B
Bash
Executable File
#!/bin/bash
|
|
# Katapult build test script. Based on Klipper's ci-build.sh script.
|
|
|
|
# Stop script early on any error
|
|
set -eu
|
|
|
|
for TARGET in test/configs/*.config ; do
|
|
echo "::group::=============== Katapult Build $TARGET"
|
|
set -x
|
|
make clean
|
|
make distclean
|
|
unset CC
|
|
cp ${TARGET} .config
|
|
make olddefconfig
|
|
make V=1
|
|
set +x
|
|
echo "=============== Finished $TARGET"
|
|
echo "::endgroup::"
|
|
done |