-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.7 grpc CVE #530
1.7 grpc CVE #530
Conversation
shift | ||
target="${1?Need to provide a target branch argument}" | ||
|
||
old=`fmktemp ${target}` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shellcheck] reported by reviewdog 🐶
old=`fmktemp ${target}` | |
old=`fmktemp "${target}"` |
old=`fmktemp ${target}` | ||
bench "${target}" "${old}" | ||
|
||
new=`fmktemp HEAD` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shellcheck] reported by reviewdog 🐶
new=`fmktemp HEAD` | |
new=$(fmktemp HEAD) |
-a) | ||
shift | ||
|
||
v2stats=`fmktemp go-toml-v2` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shellcheck] reported by reviewdog 🐶
v2stats=`fmktemp go-toml-v2` | |
v2stats=$(fmktemp go-toml-v2) |
|
||
v2stats=`fmktemp go-toml-v2` | ||
bench HEAD "${v2stats}" "github.com/pelletier/go-toml/v2" | ||
v1stats=`fmktemp go-toml-v1` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shellcheck] reported by reviewdog 🐶
v1stats=`fmktemp go-toml-v1` | |
v1stats=$(fmktemp go-toml-v1) |
bench HEAD "${v2stats}" "github.com/pelletier/go-toml/v2" | ||
v1stats=`fmktemp go-toml-v1` | ||
bench HEAD "${v1stats}" "github.com/pelletier/go-toml" | ||
bsstats=`fmktemp bs-toml` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shellcheck] reported by reviewdog 🐶
bsstats=`fmktemp bs-toml` | |
bsstats=$(fmktemp bs-toml) |
tmpcsv=`fmktemp csv` | ||
benchstat -csv -geomean go-toml-v2.txt go-toml-v1.txt bs-toml.txt > $tmpcsv | ||
benchstathtml $tmpcsv |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shellcheck] reported by reviewdog 🐶
tmpcsv=`fmktemp csv` | |
benchstat -csv -geomean go-toml-v2.txt go-toml-v1.txt bs-toml.txt > $tmpcsv | |
benchstathtml $tmpcsv | |
tmpcsv=$(fmktemp csv) | |
benchstat -csv -geomean go-toml-v2.txt go-toml-v1.txt bs-toml.txt > "$tmpcsv" | |
benchstathtml "$tmpcsv" |
return $? | ||
esac | ||
|
||
bench "${1-HEAD}" `mktemp` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shellcheck] reported by reviewdog 🐶
bench "${1-HEAD}" `mktemp` | |
bench "${1-HEAD}" $(mktemp) |
@@ -0,0 +1,279 @@ | |||
#!/usr/bin/env bash | |||
|
|||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shfmt] reported by reviewdog 🐶
|
||
|
||
stderr() { | ||
echo "$@" 1>&2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shfmt] reported by reviewdog 🐶
echo "$@" 1>&2 | |
echo "$@" 1>&2 |
b=$(basename "$0") | ||
echo $b: ERROR: "$@" 1>&2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shfmt] reported by reviewdog 🐶
b=$(basename "$0") | |
echo $b: ERROR: "$@" 1>&2 | |
b=$(basename "$0") | |
echo $b: ERROR: "$@" 1>&2 |
b=$(basename "$0") | ||
echo $b: ERROR: "$@" 1>&2 | ||
|
||
cat 1>&2 <<EOF |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shfmt] reported by reviewdog 🐶
cat 1>&2 <<EOF | |
cat 1>&2 <<EOF |
the BRANCH argument is required. Exit code is non-zero when | ||
coverage percentage decreased. | ||
EOF | ||
exit 1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shfmt] reported by reviewdog 🐶
exit 1 | |
exit 1 |
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' | | ||
egrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT)' | | ||
grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT' | | ||
sort >_signal.grep |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shfmt] reported by reviewdog 🐶
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' | | |
egrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT)' | | |
grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT' | | |
sort >_signal.grep | |
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' | | |
grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT' | | |
sort >_signal.grep |
echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags | | ||
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' | | ||
egrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' | | ||
grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' | | ||
sort |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shfmt] reported by reviewdog 🐶
echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags | | |
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' | | |
egrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' | | |
grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' | | |
sort | |
echo '#include <signal.h>' | $CC -x c - -E -dM $ccflags | | |
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print $2 }' | | |
grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' | | |
sort |
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' | | ||
egrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' | | ||
grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' | | ||
sort >_signal.grep |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shfmt] reported by reviewdog 🐶
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' | | |
egrep -v '(SIGSTKSIZE|SIGSTKSZ|SIGRT|SIGMAX64)' | | |
grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' | | |
sort >_signal.grep | |
awk '$1=="#define" && $2 ~ /^SIG[A-Z0-9]+$/ { print "^\t" $2 "[ \t]*=" }' | | |
grep -v 'SIGSTKSIZE\|SIGSTKSZ\|SIGRT\|SIGMAX64' | | |
sort >_signal.grep |
PATH="/home/travis/bin:${PATH}" make proto && \ | ||
git status --porcelain 2>&1 | fail_on_output || \ | ||
(git status; git --no-pager diff; exit 1) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shfmt] reported by reviewdog 🐶
PATH="/home/travis/bin:${PATH}" make proto && \ | |
git status --porcelain 2>&1 | fail_on_output || \ | |
(git status; git --no-pager diff; exit 1) | |
PATH="/home/travis/bin:${PATH}" make proto && | |
git status --porcelain 2>&1 | fail_on_output || | |
( | |
git status | |
git --no-pager diff | |
exit 1 | |
) |
SC_OUT="$(mktemp)" | ||
staticcheck -go 1.9 -checks 'inherit,-ST1015' ./... > "${SC_OUT}" || true | ||
staticcheck -go 1.19 -checks 'inherit,-ST1015,-ST1019,-SA1019' ./... > "${SC_OUT}" || true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[shfmt] reported by reviewdog 🐶
staticcheck -go 1.19 -checks 'inherit,-ST1015,-ST1019,-SA1019' ./... > "${SC_OUT}" || true | |
staticcheck -go 1.19 -checks 'inherit,-ST1015,-ST1019,-SA1019' ./... >"${SC_OUT}" || true |
Updated actions