File: pre-commit.sh

package info (click to toggle)
wolfssl 5.5.4-2%2Bdeb12u2
  • links: PTS
  • area: main
  • in suites: bookworm
  • size: 88,476 kB
  • sloc: ansic: 1,245,989; asm: 281,930; sh: 7,916; xml: 3,204; cs: 2,866; makefile: 1,116; javascript: 748; perl: 350; cpp: 97; objc: 80; tcl: 73
file content (45 lines) | stat: -rwxr-xr-x 1,015 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/bin/sh
#
#
# Our "pre-commit" hook.

# save current config
echo "\n\nSaving current config\n\n"
cp config.status tmp.status
cp wolfssl/options.h tmp.options.h

# stash modified files, if any, that are not part of this commit, don't test
# them
STASHED=0
if ! git diff --quiet
then
    STASHED=1
    echo "\n\nStashing modified files not part of commit\n\n"
    git stash -q --keep-index
fi

# do the commit tests
echo "\n\nRunning commit tests...\n\n"
./commit-tests.sh
RESULT=$?

# restore modified files not part of this commit
if test $STASHED -eq 1
then
    echo "\n\nPopping stashed modified files not part of commit\n"
    git stash pop -q
fi

# restore current config
echo "\nRestoring current config\n"
mv tmp.status config.status
# don't show output in case error from above
./config.status >/dev/null 2>&1
mv tmp.options.h wolfssl/options.h
make clean >/dev/null 2>&1
make -j 8 >/dev/null 2>&1

[ $RESULT -ne 0 ] && echo "\nOops, your commit failed\n" && exit 1

echo "\nCommit tests passed!\n"
exit 0