Skip to content

Commit

Permalink
Merge pull request #361 from DiscoPYF/tests-3.9
Browse files Browse the repository at this point in the history
Update CI config to run tests against ArangoDB 3.9
  • Loading branch information
Zyqsempai authored Apr 20, 2022
2 parents 1b170fb + 1cc7983 commit 524830f
Showing 1 changed file with 28 additions and 7 deletions.
35 changes: 28 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ workflows:
- "test-arangodb-3_8":
requires:
- build
- "test-arangodb-3_9":
requires:
- build

jobs:
build:
Expand Down Expand Up @@ -103,9 +106,9 @@ jobs:
docker:
- image: mcr.microsoft.com/dotnet/core/sdk:3.1
environment:
ARANGO_HOST: adb3_7_16
- image: arangodb/arangodb:3.7.16
name: adb3_7_16
ARANGO_HOST: adb3_7_17
- image: arangodb/arangodb:3.7.17
name: adb3_7_17
environment:
ARANGO_ROOT_PASSWORD: root
steps:
Expand All @@ -122,9 +125,9 @@ jobs:
docker:
- image: mcr.microsoft.com/dotnet/core/sdk:3.1
environment:
ARANGO_HOST: adb3_8_5
- image: arangodb/arangodb:3.8.5.1
name: adb3_8_5
ARANGO_HOST: adb3_8_6
- image: arangodb/arangodb:3.8.6
name: adb3_8_6
environment:
ARANGO_ROOT_PASSWORD: root
steps:
Expand All @@ -134,4 +137,22 @@ jobs:
- run:
name: Test
command:
dotnet test -c Release --filter RunningMode!=Cluster
dotnet test -c Release --filter RunningMode!=Cluster

"test-arangodb-3_9":
working_directory: ~/arangodb-net-standard
docker:
- image: mcr.microsoft.com/dotnet/core/sdk:3.1
environment:
ARANGO_HOST: adb3_9_1
- image: arangodb/arangodb:3.9.1
name: adb3_9_1
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 --filter RunningMode!=Cluster

0 comments on commit 524830f

Please sign in to comment.