-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move all build instructions to a build.sh in the language-specific fo…
…lder Signed-off-by: Stefan Marr <[email protected]>
- Loading branch information
Showing
47 changed files
with
90 additions
and
375 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
#!/bin/bash | ||
set -e | ||
SCRIPT_PATH=`dirname $0` | ||
set -e # make script fail on first error | ||
SCRIPT_PATH=$(dirname $0) | ||
source $SCRIPT_PATH/../script.inc | ||
|
||
if [[ "$1" = "style" ]] | ||
then | ||
exit 0 | ||
fi | ||
|
||
INFO Build Crystal Benchmarks | ||
pushd $SCRIPT_PATH | ||
crystal build --release --no-debug harness.cr |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
set -e # make script fail on first error | ||
SCRIPT_PATH=$(dirname $0) | ||
source $SCRIPT_PATH/../script.inc | ||
pushd $SCRIPT_PATH | ||
|
||
if [[ "$1" = "style" ]] | ||
then | ||
ant checkstyle-jar && ant checkstyle | ||
else | ||
INFO Build Java Benchmarks | ||
ant jar | ||
fi |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
set -e # make script fail on first error | ||
SCRIPT_PATH=$(dirname $0) | ||
source $SCRIPT_PATH/../script.inc | ||
|
||
INFO Build Node.js Benchmarks | ||
if [[ "$1" = "style" ]] | ||
then | ||
INFO Check style of JavaScript benchmarks | ||
pushd $SCRIPT_PATH | ||
npx eslint . | ||
else | ||
exit 0 | ||
fi |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
set -e # make script fail on first error | ||
SCRIPT_PATH=$(dirname $0) | ||
source $SCRIPT_PATH/../script.inc | ||
|
||
if [[ "$1" = "style" ]] | ||
then | ||
INFO Check style of Lua benchmarks | ||
pushd $SCRIPT_PATH | ||
luacheck *.lua | ||
else | ||
exit 0 | ||
fi |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.