mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
dist: split out static tests from build_and_test.sh
This commit is contained in:
parent
86fcc35994
commit
09538c5a75
58
dist/tools/ci/build_and_test.sh
vendored
58
dist/tools/ci/build_and_test.sh
vendored
@ -9,46 +9,6 @@
|
|||||||
|
|
||||||
CI_BASE_BRANCH=${CI_BASE_BRANCH:-master}
|
CI_BASE_BRANCH=${CI_BASE_BRANCH:-master}
|
||||||
|
|
||||||
function print_result {
|
|
||||||
local RED="\033[0;31m"
|
|
||||||
local GREEN="\033[0;32m"
|
|
||||||
local NO_COLOUR="\033[0m"
|
|
||||||
|
|
||||||
if (( "$1" == 0 )); then
|
|
||||||
echo -e "${GREEN}✓$NO_COLOUR"
|
|
||||||
else
|
|
||||||
echo -e "${RED}x$NO_COLOUR"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
RESULT=0
|
|
||||||
set_result() {
|
|
||||||
NEW_RESULT=$1
|
|
||||||
|
|
||||||
if (( $NEW_RESULT != 0))
|
|
||||||
then
|
|
||||||
RESULT=$NEW_RESULT
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
function run {
|
|
||||||
echo -n "Running '$@' "
|
|
||||||
OUT=$($@ 2>&1)
|
|
||||||
NEW_RESULT=$?
|
|
||||||
|
|
||||||
print_result $NEW_RESULT
|
|
||||||
set_result $NEW_RESULT
|
|
||||||
|
|
||||||
# Indent command output so that its easily discernible from the rest
|
|
||||||
if [ -n "$OUT" ]; then
|
|
||||||
echo "Command output:"
|
|
||||||
echo ""
|
|
||||||
# Using printf to avoid problems if the command output begins with a -
|
|
||||||
(printf "%s\n" "$OUT" | while IFS= read -r line; do printf "\t%s\n" "$line"; done)
|
|
||||||
echo ""
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
if [[ $BUILDTEST_MCU_GROUP ]]
|
if [[ $BUILDTEST_MCU_GROUP ]]
|
||||||
then
|
then
|
||||||
export BASE_BRANCH="${CI_BASE_BRANCH}"
|
export BASE_BRANCH="${CI_BASE_BRANCH}"
|
||||||
@ -80,23 +40,7 @@ then
|
|||||||
exit $RESULT
|
exit $RESULT
|
||||||
fi
|
fi
|
||||||
|
|
||||||
run make print-versions
|
exec ./dist/tools/ci/static_tests.sh
|
||||||
|
|
||||||
run ./dist/tools/commit-msg/check.sh ${CI_BASE_BRANCH}
|
|
||||||
run ./dist/tools/whitespacecheck/check.sh ${CI_BASE_BRANCH}
|
|
||||||
DIFFFILTER="MR" ERROR_EXIT_CODE=0 run ./dist/tools/licenses/check.sh
|
|
||||||
DIFFFILTER="AC" run ./dist/tools/licenses/check.sh
|
|
||||||
run ./dist/tools/doccheck/check.sh
|
|
||||||
run ./dist/tools/externc/check.sh
|
|
||||||
run ./dist/tools/cppcheck/check.sh
|
|
||||||
run ./dist/tools/vera++/check.sh
|
|
||||||
run ./dist/tools/pr_check/pr_check.sh ${CI_BASE_BRANCH}
|
|
||||||
run ./dist/tools/coccinelle/check.sh
|
|
||||||
run ./dist/tools/flake8/check.sh
|
|
||||||
run ./dist/tools/headerguards/check.sh
|
|
||||||
run ./dist/tools/buildsystem_sanity_check/check.sh
|
|
||||||
run ./dist/tools/codespell/check.sh
|
|
||||||
exit $RESULT
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ "$BUILDTEST_MCU_GROUP" == "host" ]; then
|
if [ "$BUILDTEST_MCU_GROUP" == "host" ]; then
|
||||||
|
73
dist/tools/ci/static_tests.sh
vendored
Executable file
73
dist/tools/ci/static_tests.sh
vendored
Executable file
@ -0,0 +1,73 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
#
|
||||||
|
# Copyright (C) 2020 Kaspar Schleiser <kaspar@schleiser.de>
|
||||||
|
# 2020 Inria
|
||||||
|
# 2020 Freie Universität Berlin
|
||||||
|
# 2015 Philipp Rosenkranz <philipp.rosenkranz@fu-berlin.de>
|
||||||
|
#
|
||||||
|
# This file is subject to the terms and conditions of the GNU Lesser
|
||||||
|
# General Public License v2.1. See the file LICENSE in the top level
|
||||||
|
# directory for more details.
|
||||||
|
#
|
||||||
|
|
||||||
|
function print_result {
|
||||||
|
local RED="\033[0;31m"
|
||||||
|
local GREEN="\033[0;32m"
|
||||||
|
local NO_COLOUR="\033[0m"
|
||||||
|
|
||||||
|
if (( "$1" == 0 )); then
|
||||||
|
echo -e "${GREEN}✓$NO_COLOUR"
|
||||||
|
else
|
||||||
|
echo -e "${RED}x$NO_COLOUR"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
set_result() {
|
||||||
|
NEW_RESULT=$1
|
||||||
|
|
||||||
|
if (( $NEW_RESULT != 0))
|
||||||
|
then
|
||||||
|
RESULT=$NEW_RESULT
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function run {
|
||||||
|
echo -n "Running '$@' "
|
||||||
|
OUT=$($@ 2>&1)
|
||||||
|
NEW_RESULT=$?
|
||||||
|
|
||||||
|
print_result $NEW_RESULT
|
||||||
|
set_result $NEW_RESULT
|
||||||
|
|
||||||
|
# Indent command output so that its easily discernible from the rest
|
||||||
|
if [ -n "$OUT" ]; then
|
||||||
|
echo "Command output:"
|
||||||
|
echo ""
|
||||||
|
# Using printf to avoid problems if the command output begins with a -
|
||||||
|
(printf "%s\n" "$OUT" | while IFS= read -r line; do printf "\t%s\n" "$line"; done)
|
||||||
|
echo ""
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
RESULT=0
|
||||||
|
|
||||||
|
CI_BASE_BRANCH=${CI_BASE_BRANCH:-master}
|
||||||
|
|
||||||
|
export BASE_BRANCH="${CI_BASE_BRANCH}"
|
||||||
|
|
||||||
|
run ./dist/tools/commit-msg/check.sh ${CI_BASE_BRANCH}
|
||||||
|
run ./dist/tools/whitespacecheck/check.sh ${CI_BASE_BRANCH}
|
||||||
|
DIFFFILTER="MR" ERROR_EXIT_CODE=0 run ./dist/tools/licenses/check.sh
|
||||||
|
DIFFFILTER="AC" run ./dist/tools/licenses/check.sh
|
||||||
|
run ./dist/tools/doccheck/check.sh
|
||||||
|
run ./dist/tools/externc/check.sh
|
||||||
|
run ./dist/tools/cppcheck/check.sh
|
||||||
|
run ./dist/tools/vera++/check.sh
|
||||||
|
run ./dist/tools/pr_check/pr_check.sh ${CI_BASE_BRANCH}
|
||||||
|
run ./dist/tools/coccinelle/check.sh
|
||||||
|
run ./dist/tools/flake8/check.sh
|
||||||
|
run ./dist/tools/headerguards/check.sh
|
||||||
|
run ./dist/tools/buildsystem_sanity_check/check.sh
|
||||||
|
run ./dist/tools/codespell/check.sh
|
||||||
|
|
||||||
|
exit $RESULT
|
Loading…
Reference in New Issue
Block a user