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
def nodeSpecs(List specs, Closure callback) { | |
def nodes = [:] | |
for (item in specs) { | |
def spec = item | |
nodes["Spec ${spec}"] = { callback.call(spec) } | |
} | |
return nodes | |
} |
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
// summary : Just ONE ammonite script file to execute a load performance test using gatling ! | |
// keywords : scala, gatling, ammonite, scala, load-test, performance | |
// publish : gist, snippet | |
// authors : David Crosson | |
// id : ea7a4259-9461-44a8-99fa-1ec6ec3c48ed | |
// execution : scala ammonite script (http://ammonite.io/) - run as follow 'amm scriptname.sc' | |
/* | |
A performance load script file directly executable using ammonite, run on all OS (linux / Mac / Windows), just install ammonite REPL (http://ammonite.io). |
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
// Method 1 Create a task | |
// It can throw java.util.NoSuchElementException: head of empty list if you don't have h2 dependency | |
lazy val h2Console = taskKey[Int]("Init H2 console task") | |
h2Console := (Compile / dependencyClasspathAsJars) | |
.value | |
.map(_.data) | |
.filter(_.getPath.contains("h2database")) | |
.map(h2database => Process(s"java -jar ${h2database} org.h2.tools.Server").!) | |
.head |
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
# | |
# Working with branches | |
# | |
# Get the current branch name (not so useful in itself, but used in | |
# other aliases) | |
branch-name = "!git rev-parse --abbrev-ref HEAD" | |
# Push the current branch to the remote "origin", and set it to track | |
# the upstream branch | |
publish = "!git push -u origin $(git branch-name)" |
NewerOlder