Skip to content

Commit

Permalink
add dynamo (#104)
Browse files Browse the repository at this point in the history
  • Loading branch information
hroederld authored Feb 5, 2019
1 parent 4aa6272 commit fd143d7
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@ jobs:
pool:
vmImage: 'vs2017-win2016'
steps:
- task: PowerShell@2
displayName: 'Setup Dynamo'
inputs:
targetType: inline
workingDirectory: $(System.DefaultWorkingDirectory)
script: |
iwr -outf dynamo.zip https://s3-us-west-2.amazonaws.com/dynamodb-local/dynamodb_local_latest.zip
mkdir dynamo
Expand-Archive -Path dynamo.zip -DestinationPath dynamo
cd dynamo
javaw -D"java.library.path=./DynamoDBLocal_lib" -jar DynamoDBLocal.jar
- task: PowerShell@2
displayName: 'Setup Consul'
inputs:
Expand Down Expand Up @@ -37,4 +48,4 @@ jobs:
gem install bundler -v 1.17.3
bundle install
mkdir rspec
bundle exec rspec --exclude-pattern "spec/integrations/dynamodb_feature_store_spec.rb," --format progress --format RspecJunitFormatter -o ./rspec/rspec.xml spec
bundle exec rspec --format progress --format RspecJunitFormatter -o ./rspec/rspec.xml spec

0 comments on commit fd143d7

Please sign in to comment.