Skip to content

Commit

Permalink
Update config.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Nov 10, 2023
1 parent 3b12712 commit e77680a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2.1

# orbs:
# coveralls: coveralls/[email protected]
orbs:
coveralls: coveralls/[email protected]

workflows:
ci:
Expand Down Expand Up @@ -52,6 +52,8 @@ jobs:
type: string
arangodb_version:
type: string
# TODO: Reconsider using a docker image instead of a machine
# i.e cimg/python:<< parameters.python_version >>
machine:
image: ubuntu-2204:current
steps:
Expand Down Expand Up @@ -106,6 +108,6 @@ jobs:
- run:
name: Upload to Coveralls
command: |
if [ "<< parameters.python_version >>" = "3.11" && "<< parameters.arangodb_config >>" == "single" && "<< parameters.arangodb_license >>" == "community" ]; then
if [ "<< parameters.python_version >>" = "3.11" && "<< parameters.arangodb_config >>" = "single" && "<< parameters.arangodb_license >>" = "community" && "<< parameters.arangodb_version >>" = "latest" ]; then
coveralls/upload
fi

0 comments on commit e77680a

Please sign in to comment.