Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CI config to run tests against ArangoDB 3.9 #361

Merged
merged 2 commits into from
Apr 20, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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