-
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
Patch 1.6 #532
Patch 1.6 #532
Conversation
Bumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from 1.49.0 to 1.53.0. - [Release notes](https://github.com/grpc/grpc-go/releases) - [Commits](grpc/grpc-go@v1.49.0...v1.53.0) --- updated-dependencies: - dependency-name: google.golang.org/grpc dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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 |
benchstat "${old}" "${new}" | ||
return 0 | ||
;; |
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 🐶
benchstat "${old}" "${new}" | |
return 0 | |
;; | |
benchstat "${old}" "${new}" | |
return 0 | |
;; |
shift | ||
|
||
v2stats=`fmktemp go-toml-v2` | ||
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` | ||
bench HEAD "${bsstats}" "github.com/BurntSushi/toml" | ||
|
||
cp "${v2stats}" go-toml-v2.txt | ||
cp "${v1stats}" go-toml-v1.txt | ||
cp "${bsstats}" bs-toml.txt | ||
|
||
if [ "$1" = "-html" ]; then | ||
tmpcsv=`fmktemp csv` | ||
benchstat -csv -geomean go-toml-v2.txt go-toml-v1.txt bs-toml.txt > $tmpcsv | ||
benchstathtml $tmpcsv | ||
else | ||
benchstat -geomean go-toml-v2.txt go-toml-v1.txt bs-toml.txt | ||
fi | ||
|
||
rm -f go-toml-v2.txt go-toml-v1.txt bs-toml.txt | ||
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.
[shfmt] reported by reviewdog 🐶
shift | |
v2stats=`fmktemp go-toml-v2` | |
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` | |
bench HEAD "${bsstats}" "github.com/BurntSushi/toml" | |
cp "${v2stats}" go-toml-v2.txt | |
cp "${v1stats}" go-toml-v1.txt | |
cp "${bsstats}" bs-toml.txt | |
if [ "$1" = "-html" ]; then | |
tmpcsv=`fmktemp csv` | |
benchstat -csv -geomean go-toml-v2.txt go-toml-v1.txt bs-toml.txt > $tmpcsv | |
benchstathtml $tmpcsv | |
else | |
benchstat -geomean go-toml-v2.txt go-toml-v1.txt bs-toml.txt | |
fi | |
rm -f go-toml-v2.txt go-toml-v1.txt bs-toml.txt | |
return $? | |
esac | |
bench "${1-HEAD}" `mktemp` | |
shift | |
v2stats=$(fmktemp go-toml-v2) | |
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) | |
bench HEAD "${bsstats}" "github.com/BurntSushi/toml" | |
cp "${v2stats}" go-toml-v2.txt | |
cp "${v1stats}" go-toml-v1.txt | |
cp "${bsstats}" bs-toml.txt | |
if [ "$1" = "-html" ]; then | |
tmpcsv=$(fmktemp csv) | |
benchstat -csv -geomean go-toml-v2.txt go-toml-v1.txt bs-toml.txt >$tmpcsv | |
benchstathtml $tmpcsv | |
else | |
benchstat -geomean go-toml-v2.txt go-toml-v1.txt bs-toml.txt | |
fi | |
rm -f go-toml-v2.txt go-toml-v1.txt bs-toml.txt | |
return $? | |
;; | |
esac | |
bench "${1-HEAD}" $(mktemp) |
coverage) shift; coverage $@;; | ||
benchmark) shift; benchmark $@;; | ||
*) usage "bad argument $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 🐶
coverage) shift; coverage $@;; | |
benchmark) shift; benchmark $@;; | |
*) usage "bad argument $1";; | |
coverage) | |
shift | |
coverage $@ | |
;; | |
benchmark) | |
shift | |
benchmark $@ | |
;; | |
*) usage "bad argument $1" ;; |
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 |
grpc cve fix