Skip to content

Commit 59f122d

Browse files
committed
Merge #697: ci: shellcheck checks
ae0a304 ci: add shellcheck job (Jose Storopoli) 9f9bd34 shellcheck: fix warnings (Jose Storopoli) Pull request description: Following rust-bitcoin/rust-bitcoin#2762, adding CI shellcheck cheks here as well. I also did all fixes that I could find with ```bash shellcheck **/*.sh ``` If I've missed any please let me know. ACKs for top commit: Kixunil: ACK ae0a304 tcharding: ACK ae0a304 apoelstra: ACK ae0a304 successfully ran local tests Tree-SHA512: 0293027439cc922ad9b1ccd5184b481d33fe80b4cd270f425805e7c31108b0bfd7ebe8a76b6aca55300584846f4ca9fbd810faa9ab1d5402e5f1be2bf12fed1a
2 parents e9c959d + ae0a304 commit 59f122d

File tree

4 files changed

+22
-11
lines changed

4 files changed

+22
-11
lines changed

.github/workflows/shellcheck.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Shellcheck
2+
on:
3+
pull_request:
4+
branches:
5+
- master
6+
jobs:
7+
shellcheck:
8+
name: Shellcheck
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- name: Run ShellCheck
13+
uses: ludeeus/[email protected]
14+
env:
15+
SHELLCHECK_OPTS: -x # allow outside sources
16+
with:
17+
# This code comes directly from upstream libsecp256k1
18+
# and should not be linted here.
19+
ignore_paths: ./secp256k1-sys/depend/**/*.sh

contrib/extra_tests.sh

-4
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ say() {
4242
echo "extra_tests: $1"
4343
}
4444

45-
say_err() {
46-
say "$1" >&2
47-
}
48-
4945
verbose_say() {
5046
if [ "$flag_verbose" = true ]; then
5147
say "$1"

contrib/sanitizer.sh

-4
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ say() {
4848
echo "extra_tests: $1"
4949
}
5050

51-
say_err() {
52-
say "$1" >&2
53-
}
54-
5551
verbose_say() {
5652
if [ "$flag_verbose" = true ]; then
5753
say "$1"

githooks/pre-commit

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ if [ "$allownonascii" != "true" ] &&
2626
# Note that the use of brackets around a tr range is ok here, (it's
2727
# even required, for portability to Solaris 10's /usr/bin/tr), since
2828
# the square bracket bytes happen to fall in the designated range.
29-
test $(git diff --cached --name-only --diff-filter=A -z $against |
30-
LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0
29+
test "$(git diff --cached --name-only --diff-filter=A -z "$against" |
30+
LC_ALL=C tr -d '[ -~]\0' | wc -c)" != 0
3131
then
3232
cat <<\EOF
3333
Error: Attempt to add a non-ASCII file name.
@@ -44,7 +44,7 @@ EOF
4444
fi
4545

4646
# If there are whitespace errors, print the offending file names and fail.
47-
git diff-index --check --cached $against -- || exit 1
47+
git diff-index --check --cached "$against" -- || exit 1
4848

4949
# Check that code lints cleanly.
5050
cargo clippy --features=rand,std,recovery,lowmemory,global-context --all-targets -- -D warnings || exit 1

0 commit comments

Comments
 (0)