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
env: | |
global: | |
# implement your own logic in get_env_for_git_reference.sh | |
- TARGET_ENV="`test $TRAVIS_TAG && ./get_target_env_for_git_reference.sh $TRAVIS_TAG`" | |
# ENV integration | |
- AWS_INTEGRATION_APPLICATION=xxxx | |
- AWS_INTEGRATION_DEPLOYMENT_GROUP=xxxx | |
- AWS_INTEGRATION_REGION=xxxx | |
#AWS_INTEGRATION_ACCESS_KEY |
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
env: | |
global: | |
# TRAVIS_ACCESS_TOKEN used to access travis API from within builds | |
- secure: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXX" | |
cache: | |
bundler: true | |
before_install: | |
- bundle install |
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
<?php | |
$client = $this->get('aws_dynamodb.client'); | |
$client->createTable([ | |
'TableName' => 'test_set_management', | |
'ProvisionedThroughput' => [ | |
'ReadCapacityUnits' => 1, | |
'WriteCapacityUnits' => 1, | |
], | |
'AttributeDefinitions' => [ |
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
#!/bin/bash | |
REFERENCE="$1" | |
if [ -z "$REFERENCE" ] | |
then | |
echo "usage: $0 reference" 1>&2 | |
exit 1 | |
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
#!/bin/bash | |
kb_host="https://XXXXXXXX" | |
kb_url="$kb_host/api/console/proxy" | |
index=$1 | |
passw_file=$2 | |
query_file=$3 | |
output_file=$4 |