-
Notifications
You must be signed in to change notification settings - Fork 296
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modify JMH Benchmark Workflow For Shellcheck (#813)
Enable shellcheck checking as part of our build, and fix Shellcheck errors for JMH workflow files. --------- Co-authored-by: Manu Sridharan <msridhar@gmail.com>
- Loading branch information
1 parent
540eaa9
commit 7cf3e3b
Showing
7 changed files
with
33 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash | ||
#!/bin/bash -eux | ||
|
||
cd $BRANCH_NAME/ | ||
cd "$BRANCH_NAME/" | ||
mkdir main | ||
cd main/ | ||
cd main/ | ||
git clone git@github.com:Uber/NullAway.git | ||
cd NullAway/ | ||
cd NullAway/ | ||
|
||
./gradlew jmh --no-daemon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash | ||
#!/bin/bash -eux | ||
|
||
cd $BRANCH_NAME/ | ||
cd "$BRANCH_NAME/" | ||
mkdir pr | ||
cd pr/ | ||
git clone --branch $BRANCH_NAME --single-branch git@github.com:$REPO_NAME.git NullAway | ||
cd NullAway/ | ||
cd pr/ | ||
git clone --branch "$BRANCH_NAME" --single-branch git@github.com:"$REPO_NAME".git NullAway | ||
cd NullAway/ | ||
|
||
./gradlew jmh --no-daemon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters