Skip to content

Commit

Permalink
new setup
Browse files Browse the repository at this point in the history
  • Loading branch information
apetenchea committed Oct 16, 2023
1 parent 40356b3 commit cb726d7
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 9 deletions.
30 changes: 23 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
version: 2.1

parameters:
preview:
type: boolean
default: false

jobs:
run-tests:
resource_class: medium
Expand Down Expand Up @@ -77,7 +82,7 @@ workflows:
name: python-3.8-community-single-3.10
python-version: "3.8.2"
arangodb-version: "arangodb:3.10.10"
arangodb-config: "single.conf"
arangodb-config: "single-3.10.conf"
cluster: false
enterprise: false
python-3.8-enterprise-cluster-3.10:
Expand All @@ -86,7 +91,7 @@ workflows:
name: python-3.8-enterprise-cluster-3.10
python-version: "3.8.2"
arangodb-version: "enterprise:3.10.10"
arangodb-config: "cluster.conf"
arangodb-config: "cluster-3.10.conf"
cluster: true
enterprise: true
python-3.10-community-single-3.11:
Expand All @@ -95,7 +100,7 @@ workflows:
name: python-3.10-community-single-3.11
python-version: "3.10.6"
arangodb-version: "arangodb:3.11.4"
arangodb-config: "single-3.11.conf"
arangodb-config: "single.conf"
cluster: false
enterprise: false
python-3.10-community-cluster-3.11:
Expand All @@ -104,7 +109,7 @@ workflows:
name: python-3.10-community-cluster-3.11
python-version: "3.10.6"
arangodb-version: "arangodb:3.11.4"
arangodb-config: "cluster-3.11.conf"
arangodb-config: "cluster.conf"
cluster: true
enterprise: false
python-3.10-enterprise-single-3.11:
Expand All @@ -113,7 +118,7 @@ workflows:
name: python-3.10-enterprise-single-3.11
python-version: "3.10.6"
arangodb-version: "enterprise:3.11.4"
arangodb-config: "single-3.11.conf"
arangodb-config: "single.conf"
cluster: false
enterprise: true
python-3.10-enterprise-cluster-3.11:
Expand All @@ -122,15 +127,26 @@ workflows:
name: python-3.10-enterprise-cluster-3.11
python-version: "3.10.6"
arangodb-version: "enterprise:3.11.4"
arangodb-config: "cluster-3.11.conf"
arangodb-config: "cluster.conf"
cluster: true
enterprise: true
python-latest-enterprise-single-preview:
jobs:
- when: << pipeline.parameters.preview >>
- run-tests:
name: python-latest-enterprise-single-preview
python-version: "latest"
arangodb-version: "enterprise-preview:latest"
arangodb-config: "single.conf"
cluster: false
enterprise: true
python-latest-enterprise-cluster-preview:
jobs:
- when: << pipeline.parameters.preview >>
- run-tests:
name: python-latest-enterprise-cluster-preview
python-version: "latest"
arangodb-version: "enterprise-preview:latest"
arangodb-config: "cluster-3.11.conf"
arangodb-config: "cluster.conf"
cluster: true
enterprise: true
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,4 @@ jwt-secret = /tests/static/keyfile

[args]
all.database.password = passwd
all.database.extended-names = true
all.log.api-enabled = true
1 change: 1 addition & 0 deletions tests/static/cluster.conf
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ jwt-secret = /tests/static/keyfile

[args]
all.database.password = passwd
all.database.extended-names = true
all.log.api-enabled = true
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ jwt-secret = /tests/static/keyfile

[args]
all.database.password = passwd
all.database.extended-names = true
1 change: 1 addition & 0 deletions tests/static/single.conf
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ jwt-secret = /tests/static/keyfile

[args]
all.database.password = passwd
all.database.extended-names = true

0 comments on commit cb726d7

Please sign in to comment.