Fix master-ci dirty working tree + CI test (#25087)
* check
* test for dirty working tree
* swap order
* fix diff
old-commit-hash: df251ef50e
taco
parent
b8a8440611
commit
33a85302e0
7 changed files with 22 additions and 5 deletions
@ -1 +1 @@ |
||||
Subproject commit 225dbacbaac312f85eaaee0b97a3acc31f9c6b47 |
||||
Subproject commit 3b6bd703b7a7667e4f82d0b81ef9a454819b94bd |
@ -0,0 +1,11 @@ |
||||
#!/usr/bin/bash |
||||
set -e |
||||
|
||||
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)" |
||||
cd $DIR |
||||
|
||||
if [ ! -z "$(git status --porcelain)" ]; then |
||||
echo "Dirty working tree after build:" |
||||
git status --porcelain |
||||
exit 1 |
||||
fi |
@ -1,3 +1,4 @@ |
||||
loggerd |
||||
encoderd |
||||
bootlog |
||||
tests/test_logger |
||||
|
Loading…
Reference in new issue