Skip to content

Commit

Permalink
Run tests against ArangoDB 3.8 (#347)
Browse files Browse the repository at this point in the history
* Run tests against ArangoDB 3.8

fix #345

* Update 3.7 tests to run against 3.7.16

fix #345
  • Loading branch information
DiscoPYF authored Feb 15, 2022
1 parent 3496c74 commit 3c175f0
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ workflows:
- "test-arangodb-3_7":
requires:
- build
- "test-arangodb-3_8":
requires:
- build

jobs:
build:
Expand Down Expand Up @@ -100,9 +103,28 @@ jobs:
docker:
- image: mcr.microsoft.com/dotnet/core/sdk:3.1
environment:
ARANGO_HOST: adb3_7_3
- image: arangodb/arangodb:3.7.3
name: adb3_7_3
ARANGO_HOST: adb3_7_16
- image: arangodb/arangodb:3.7.16
name: adb3_7_16
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 -c Release

"test-arangodb-3_8":
working_directory: ~/arangodb-net-standard
docker:
- image: mcr.microsoft.com/dotnet/core/sdk:3.1
environment:
ARANGO_HOST: adb3_8_5
- image: arangodb/arangodb:3.8.5
name: adb3_8_5
environment:
ARANGO_ROOT_PASSWORD: root
steps:
Expand Down

0 comments on commit 3c175f0

Please sign in to comment.