Skip to content

Commit 6bc4345

Browse files
authored
1 parent 4c98a72 commit 6bc4345

10 files changed

+47
-15
lines changed

.github/scripts/deadlock-detector.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ do
66
file="/tmp/deadlock-detector-$(date +"%Y-%m-%d-%H-%M-%S").txt"
77
for pid in $(jps | grep -v Jps | awk '{ print $1 }')
88
do
9-
jcmd $pid VM.command_line >> $file
10-
jcmd $pid Thread.print >> $file
11-
if jcmd $pid Thread.print | grep -q SimpleLogger
9+
jcmd "$pid" VM.command_line >> "$file"
10+
jcmd "$pid" Thread.print >> "$file"
11+
if jcmd "$pid" Thread.print | grep -q SimpleLogger
1212
then
1313
# check once more to eliminate most of the sporadic finds
14-
if jcmd $pid Thread.print | grep -q SimpleLogger
14+
if jcmd "$pid" Thread.print | grep -q SimpleLogger
1515
then
16-
jcmd $pid GC.heap_dump /tmp/deadlock-detector-$pid.hprof
16+
jcmd "$pid" GC.heap_dump "/tmp/deadlock-detector-$pid.hprof"
1717
fi
1818
fi
1919
done

.github/scripts/diff-suppression-keys-with-docs.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env bash
1+
#!/bin/bash -e
22

33
# this script reports some false positives, but is helpful in comparing the keys listed
44
# in suppressing-instrumentation.md with the keys listed in the source files
@@ -9,6 +9,7 @@ curl https://raw.githubusercontent.com/open-telemetry/opentelemetry.io/main/cont
99

1010
comm -3 \
1111
<(
12+
# shellcheck disable=SC2016 # "Expressions don't expand in single quotes"
1213
sed -n '/----------------------/,${p;/^$/q}' agent-config.md \
1314
| sed '1d;$d' \
1415
| cut -d '|' -f 3 \

.github/scripts/draft-change-log-entries.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ echo
4343
echo "### 🧰 Tooling"
4444
echo
4545

46-
git log --reverse --pretty=format:"- %s" $range \
46+
git log --reverse --pretty=format:"- %s" "$range" \
4747
| sed -E 's,\(#([0-9]+)\)$,\n ([#\1](https://github.com/open-telemetry/opentelemetry-java-instrumentation/pull/\1)),'

.github/scripts/generate-release-contributors.sh

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
#!/bin/bash -e
22

3-
# shellcheck disable=SC2016
4-
# shellcheck disable=SC2086
5-
63
# this should be run on the release branch
74

85
# NOTE if you need to run this script locally, you will need to first:
@@ -13,11 +10,12 @@
1310
from_version=$1
1411

1512
# get the date of the first commit that was not in the from_version
16-
from=$(git log --reverse --pretty=format:"%cI" $from_version..HEAD | head -1)
13+
from=$(git log --reverse --pretty=format:"%cI" "$from_version..HEAD" | head -1)
1714

1815
# get the last commit on main that was included in the release
1916
to=$(git merge-base origin/main HEAD | xargs git log -1 --pretty=format:"%cI")
2017

18+
# shellcheck disable=SC2016 # "Expressions don't expand in single quotes"
2119
contributors1=$(gh api graphql --paginate -F q="repo:$GITHUB_REPOSITORY is:pr base:main is:merged merged:$from..$to" -f query='
2220
query($q: String!, $endCursor: String) {
2321
search(query: $q, type: ISSUE, first: 100, after: $endCursor) {
@@ -55,6 +53,7 @@ query($q: String!, $endCursor: String) {
5553

5654
# this query captures authors of issues which have had PRs in the current range reference the issue
5755
# but not necessarily through closingIssuesReferences (e.g. addressing just a part of an issue)
56+
# shellcheck disable=SC2016 # "Expressions don't expand in single quotes"
5857
contributors2=$(gh api graphql --paginate -F q="repo:$GITHUB_REPOSITORY is:pr base:main is:merged merged:$from..$to" -f query='
5958
query($q: String!, $endCursor: String) {
6059
search(query: $q, type: ISSUE, first: 100, after: $endCursor) {
@@ -79,7 +78,7 @@ query($q: String!, $endCursor: String) {
7978
| sed 's/^\["//' \
8079
| sed 's/".*//')
8180

82-
echo $contributors1 $contributors2 \
81+
echo "$contributors1" "$contributors2" \
8382
| sed 's/ /\n/g' \
8483
| sort -uf \
8584
| grep -v linux-foundation-easycla \

.github/workflows/build-daily.yml

+3
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
muzzle:
2525
uses: ./.github/workflows/reusable-muzzle.yml
2626

27+
shell-script-check:
28+
uses: ./.github/workflows/reusable-shell-script-check.yml
29+
2730
markdown-link-check:
2831
uses: ./.github/workflows/reusable-markdown-link-check.yml
2932

.github/workflows/build-pull-request.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,17 @@ jobs:
2929
with:
3030
cache-read-only: true
3131

32+
# this is not a required check to avoid blocking pull requests if new shell checks are added
33+
shell-script-check:
34+
# release branches are excluded to avoid unnecessary maintenance if new shell checks are added
35+
if: ${{ !startsWith(github.ref_name, 'release/') }}
36+
uses: ./.github/workflows/reusable-shell-script-check.yml
37+
3238
# this is not a required check to avoid blocking pull requests if external links break
3339
markdown-link-check:
34-
# release branches are excluded to avoid unnecessary maintenance
40+
# release branches are excluded to avoid unnecessary maintenance if external links break
41+
# (and also because the README.md javaagent download link has to be updated on release branches
42+
# before the release download has been published)
3543
if: ${{ !startsWith(github.ref_name, 'release/') }}
3644
uses: ./.github/workflows/reusable-markdown-link-check.yml
3745

.github/workflows/build.yml

+5
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,11 @@ jobs:
3333
if: ${{ !startsWith(github.ref_name, 'release/') }}
3434
uses: ./.github/workflows/reusable-muzzle.yml
3535

36+
shell-script-check:
37+
# release branches are excluded to avoid unnecessary maintenance if new shell checks are added
38+
if: ${{ !startsWith(github.ref_name, 'release/') }}
39+
uses: ./.github/workflows/reusable-shell-script-check.yml
40+
3641
markdown-link-check:
3742
# release branches are excluded to avoid unnecessary maintenance if external links break
3843
# (and also because the README.md javaagent download link has to be updated on release branches
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Reusable - Shell script check
2+
3+
on:
4+
workflow_call:
5+
6+
jobs:
7+
shell-script-check:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v3
11+
12+
- name: Install shell check
13+
run: wget -qO- "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" | tar -xJv
14+
15+
- name: Run shellcheck
16+
run: find -name '*.sh' | xargs shellcheck-stable/shellcheck --format=gcc

smoke-tests/src/test/resources/crashearlyjdk8/start.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#/bin/sh
1+
#!/bin/bash -e
22

33
echo "started"
44
while :

smoke-tests/src/test/resources/crashearlyjdk8/test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#/bin/sh
1+
#!/bin/bash -e
22

33
echo "compiling"
44
javac CrashEarlyJdk8.java

0 commit comments

Comments
 (0)