Skip to content

Commit

Permalink
Add a step in circle CI config to run tests against arangodb 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
DiscoPYF committed Oct 31, 2020
1 parent 131eba5 commit 656c4de
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ workflows:
- "test-arangodb-3_6":
requires:
- "test-arangodb-3_5"
- "test-arangodb-3_7":
requires:
- "test-arangodb-3_6"

jobs:
build:
Expand Down Expand Up @@ -83,6 +86,25 @@ jobs:
name: adb3_6_4
environment:
ARANGO_ROOT_PASSWORD: root
steps:
- attach_workspace:
# Must be absolute path or relative path from working_directory
at: ~/
- run:
name: Test
command:
dotnet test

"test-arangodb-3_7":
working_directory: ~/arangodb-net-standard
docker:
- image: mcr.microsoft.com/dotnet/core/sdk:2.2
environment:
ARANGO_HOST: adb3_7_4
- image: arangodb/arangodb:3.7.4
name: adb3_7_4
environment:
ARANGO_ROOT_PASSWORD: root
steps:
- attach_workspace:
# Must be absolute path or relative path from working_directory
Expand Down

0 comments on commit 656c4de

Please sign in to comment.