projects
/
tinc
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Extract common logic in OpenSSL-specific code
[tinc]
/
.ci
/
warn
/
run.sh
1
#!/bin/bash
2
3
set -euo pipefail
4
5
test -n "$CC"
6
export CFLAGS="${CFLAGS:-} -Werror"
7
8
result=0
9
10
check_warnings() {
11
git clean -dfx
12
13
autoreconf -fsi
14
# shellcheck disable=SC2046
15
./configure $(sh .ci/conf.sh)
16
make -j"$(nproc)" all extra || result=$?
17
}
18
19
check_warnings
20
check_warnings --disable-legacy-protocol
21
22
exit $result