Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2f040db

Browse files
committedFeb 17, 2025
Add tests for ArangoDB 3.12
fix ArangoDB-Community#498
1 parent 6cba790 commit 2f040db

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
 

‎.circleci/config.yml

+21
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ workflows:
2929
- "test-arangodb-3_11":
3030
requires:
3131
- build
32+
- "test-arangodb-3_12":
33+
requires:
34+
- build
3235

3336
jobs:
3437
build:
@@ -191,6 +194,24 @@ jobs:
191194
name: adb3_11_0
192195
environment:
193196
ARANGO_ROOT_PASSWORD: root
197+
steps:
198+
- attach_workspace:
199+
# Must be absolute path or relative path from working_directory
200+
at: ~/
201+
- run:
202+
name: Test
203+
command: dotnet test -c Release --filter RunningMode!=Cluster
204+
205+
"test-arangodb-3_12":
206+
working_directory: ~/arangodb-net-standard
207+
docker:
208+
- image: mcr.microsoft.com/dotnet/sdk:8.0
209+
environment:
210+
ARANGO_HOST: adb3_12
211+
- image: arangodb:3.12
212+
name: adb3_12
213+
environment:
214+
ARANGO_ROOT_PASSWORD: root
194215
steps:
195216
- attach_workspace:
196217
# Must be absolute path or relative path from working_directory

0 commit comments

Comments
 (0)
Please sign in to comment.