Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Nov 9, 2023
1 parent d79bb40 commit 5ecb3a8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ workflows:
parameters:
python_version: ["3.10"] # ["3.8", "3.9", "3.10", "3.11", "3.12"]
arangodb_config: ["single"] # ["single", "cluster"]
arangodb_edition: ["community"] # ["community", "enterprise"]
arangodb_license: ["community"] # ["community", "enterprise"]
arangodb_version: ["latest"] # ["3.10.10", "3.11.4", "latest"]

jobs:
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:
type: string
arangodb_config:
type: string
arangodb_edition:
arangodb_license:
type: string
arangodb_version:
type: string
Expand All @@ -59,22 +59,22 @@ jobs:
- setup_remote_docker

- run:
name: Set Up Docker Container
name: Set Up ArangoDB
command: |
chmod +x starter.sh
./starter.sh << parameters.arangodb_config >> << parameters.arangodb_edition >> << parameters.arangodb_version >>
./starter.sh << parameters.arangodb_config >> << parameters.arangodb_license >> << parameters.arangodb_version >>
- run:
name: "Install Dependencies"
command: pip install -e .[dev] pytest

# - run:
# name: "Sleep"
# command: sleep 15
- run:
name: "Sleep"
command: sleep 15

- run: docker ps -a

# - run: docker logs arango
- run: docker logs arango

- run: curl -v http://localhost:8529/

Expand All @@ -87,7 +87,7 @@ jobs:
args+=("--cluster" "--port=8539" "--port=8549")
fi
if [ << parameters.arangodb_edition >> = "enterprise" ]; then
if [ << parameters.arangodb_license >> = "enterprise" ]; then
args+=("--enterprise")
fi
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ jobs:
strategy:
fail-fast: false
matrix:
python_version: ["3.10"] # ["3.8", "3.9", "3.10", "3.11", "3.12"]
python_version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
arangodb_config: ["single", "cluster"]
arangodb_license: ["community", "enterprise"]
arangodb_version: ["3.10.10"] # ["3.10.10", "3.11.4", "latest"]
arangodb_version: ["3.10.10", "3.11.4", "latest"]

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion starter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup="${1:-single}"
license="${2:-community}"
version="${3:-3.11.4}"
version="${3:-latest}"

extra_ports=""
if [ "$setup" == "single" ]; then
Expand Down

0 comments on commit 5ecb3a8

Please sign in to comment.