mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
15 lines
284 B
Bash
Executable File
15 lines
284 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
function integration-test {
|
|
$DIR/integration-test-template $@
|
|
}
|
|
|
|
integration-test aws-java-gradle build
|
|
integration-test aws-java-maven mvn package
|
|
integration-test aws-nodejs
|
|
integration-test aws-python
|