File tree Expand file tree Collapse file tree 5 files changed +24
-3
lines changed
Expand file tree Collapse file tree 5 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 1+
2+ name : Shellcheck
3+ on :
4+ pull_request :
5+ branches :
6+ - master
7+ jobs :
8+ shellcheck :
9+ name : Shellcheck
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v4
13+ - name : Run ShellCheck
14+ uses : ludeeus/action-shellcheck@2.0.0
15+ env :
16+ SHELLCHECK_OPTS : -x # allow outside sources
Original file line number Diff line number Diff line change 1+ # we don't want shebangs in env.sh, disable shellcheck warning
2+ # shellcheck disable=SC2148
13export RUSTFLAGS=" -C link-arg=-Tlink.x"
24export CARGO_TARGET_THUMBV7M_NONE_EABI_RUNNER=" qemu-system-arm -cpu cortex-m3 -machine mps2-an385 -nographic -semihosting-config enable=on,target=native -kernel"
Original file line number Diff line number Diff line change 77
88set -e
99REPO_DIR=$( git rev-parse --show-toplevel)
10- # shellcheck source=./fuzz-util.sh
10+ # can't find the file because of the ENV var
11+ # shellcheck source=/dev/null
1112source " $REPO_DIR /fuzz/fuzz-util.sh"
1213
1314while :
Original file line number Diff line number Diff line change 33
44REPO_DIR=$( git rev-parse --show-toplevel)
55
6- # shellcheck source=./fuzz-util.sh
6+ # can't find the file because of the ENV var
7+ # shellcheck source=/dev/null
78source " $REPO_DIR /fuzz/fuzz-util.sh"
89
910# Check that input files are correct Windows file names
Original file line number Diff line number Diff line change 44
55REPO_DIR=$( git rev-parse --show-toplevel)
66
7- # shellcheck source=./fuzz-util.sh
7+ # can't find the file because of the ENV var
8+ # shellcheck source=/dev/null
89source " $REPO_DIR /fuzz/fuzz-util.sh"
910
1011# 1. Generate fuzz/Cargo.toml
You can’t perform that action at this time.
0 commit comments