Skip to content

Commit

Permalink
extra jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
apetenchea committed Oct 16, 2023
1 parent 6c01b48 commit 654eaac
Show file tree
Hide file tree
Showing 6 changed files with 66 additions and 10 deletions.
46 changes: 41 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,21 +71,57 @@ jobs:
path: test-results

workflows:
python-3.10-community-single-3.10:
python-3.8-community-single-3.10:
jobs:
- run-tests:
name: python-3.10-community-single-3.10
python-version: "3.10.6"
name: python-3.8-community-single-3.10
python-version: "3.8.2"
arangodb-version: "arangodb:3.10.10"
arangodb-config: "single.conf"
cluster: false
enterprise: false
python-3.10-enterprise-cluster-3.10:
python-3.8-enterprise-cluster-3.10:
jobs:
- run-tests:
name: python-3.8-enterprise-cluster-3.10
python-version: "3.8.2"
arangodb-version: "enterprise:3.10.10"
arangodb-config: "cluster.conf"
cluster: true
enterprise: true
python-3.10-community-single-3.11:
jobs:
- run-tests:
name: python-3.10-community-single-3.11.4
python-version: "3.10.6"
arangodb-version: "arangodb:3.11.4"
arangodb-config: "single-3.11.conf"
cluster: false
enterprise: false
python-3.10-community-cluster-3.11:
jobs:
- run-tests:
name: python-3.10-community-cluster-3.11.4
python-version: "3.10.6"
arangodb-version: "arangodb:3.11.4"
arangodb-config: "cluster-3.11.conf"
cluster: true
enterprise: false
python-3.10-enterprise-single-3.11:
jobs:
- run-tests:
name: python-3.10-enterprise-single-3.11.4
python-version: "3.10.6"
arangodb-version: "enterprise:3.11.4"
arangodb-config: "single-3.11.conf"
cluster: false
enterprise: true
python-3.10-enterprise-cluster-3.11:
jobs:
- run-tests:
name: python-3.10-enterprise-cluster-3.10
python-version: "3.10.6"
arangodb-version: "enterprise:3.10.10"
arangodb-config: "cluster.conf"
arangodb-config: "cluster-3.11.conf"
cluster: true
enterprise: true
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: '3.10'

- name: Debug with tmate
uses: mxschmitt/action-tmate@v3
Expand Down
13 changes: 13 additions & 0 deletions tests/static/cluster-3.11.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[starter]
mode = cluster
local = true
address = 0.0.0.0
port = 8528

[auth]
jwt-secret = /tests/static/keyfile

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

[args]
all.database.password = passwd
# Extended names can be used starting with 3.11
# all.database.extended-names = true
all.log.api-enabled = true
11 changes: 11 additions & 0 deletions tests/static/single-3.11.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[starter]
mode = single
address = 0.0.0.0
port = 8528

[auth]
jwt-secret = /tests/static/keyfile

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

[args]
all.database.password = passwd
# Extended names can be used starting with 3.11
# all.database.extended-names = true

0 comments on commit 654eaac

Please sign in to comment.