Skip to content

Commit ba36ba7

Browse files
committed
wip
1 parent 9e24daf commit ba36ba7

File tree

1 file changed

+21
-10
lines changed

1 file changed

+21
-10
lines changed

testAll.sh

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,36 @@ my_long_task() {
99
#local arg1="${1:-default1}"
1010
#local arg2="${2:-default2}"
1111

12-
clean-dsstore.sh
13-
clang-format.ch
14-
buildTriceTool.sh
15-
format_dumeng_toc.sh
16-
markdownlint .
17-
echo "Check links..."
18-
lychee .
19-
echo "Check links...done"
2012

2113
echo "🟢 Starting Test: $(date)"
2214
#echo "Test parameters: arg1='$arg1', arg2='$arg2'"
2315

2416
SELECTED=${1:-quick}
2517

2618
triceFolder=$(pwd)
27-
date 2>&1 | tee $triceFolder/testAll.log
28-
echo This can take a while ... 2>&1 | tee -a $triceFolder/testAll.log
19+
date 2>&1 | tee $triceFolder/testAll.log
20+
echo This can take a while ... 2>&1 | tee -a $triceFolder/testAll.log
2921
t0=$(date +%s)
3022

23+
echo "Clean MacOS files..." 2>&1 | tee -a $triceFolder/testAll.log
24+
./clean-dsstore.sh 2>&1 | tee -a $triceFolder/testAll.log
25+
echo "Clean MacOS files...done" 2>&1 | tee -a $triceFolder/testAll.log
26+
echo "Format C sources files..." 2>&1 | tee -a $triceFolder/testAll.log
27+
./clang-format.sh 2>&1 | tee -a $triceFolder/testAll.log
28+
echo "Format C sources files...done" 2>&1 | tee -a $triceFolder/testAll.log
29+
echo "Build Trice tool..." 2>&1 | tee -a $triceFolder/testAll.log
30+
./buildTriceTool.sh 2>&1 | tee -a $triceFolder/testAll.log
31+
echo "Build Trice tool...done" 2>&1 | tee -a $triceFolder/testAll.log
32+
echo "Format TriceUserManual.md..." 2>&1 | tee -a $triceFolder/testAll.log
33+
./format-dumeng-toc.sh 2>&1 | tee -a $triceFolder/testAll.log
34+
echo "Format TriceUserManual.md...done" 2>&1 | tee -a $triceFolder/testAll.log
35+
echo "Lint Markdown files..." 2>&1 | tee -a $triceFolder/testAll.log
36+
markdownlint . 2>&1 | tee -a $triceFolder/testAll.log
37+
echo "Lint Markdown files...done" 2>&1 | tee -a $triceFolder/testAll.log
38+
echo "Check links..." 2>&1 | tee -a $triceFolder/testAll.log
39+
lychee . 2>&1 | tee -a $triceFolder/testAll.log
40+
echo "Check links...done" 2>&1 | tee -a $triceFolder/testAll.log.
41+
3142
# show environment and prepare
3243
echo "SELECTED: $SELECTED" 2>&1 | tee -a $triceFolder/testAll.log
3344
echo \$OSTYPE=$OSTYPE 2>&1 | tee -a $triceFolder/testAll.log

0 commit comments

Comments
 (0)