Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,25 +93,25 @@ jobs:
- checkout
- run: ./gradlew releaseSnapshot

workflows:
version: 2

test_and_docs_deployment:
jobs:
- test: # will be executed for topic branch not only default branches so that we can safely merge it
context:
- aws-rd
- docs_deployment: # master branch only
context:
- github
filters:
branches:
only:
- master
- release_snapshot: # v0_10 branch only
requires:
- test
filters:
branches:
only:
- v0_11
#workflows:
# version: 2
#
# test_and_docs_deployment:
# jobs:
# - test: # will be executed for topic branch not only default branches so that we can safely merge it
# context:
# - aws-rd
# - docs_deployment: # master branch only
# context:
# - github
# filters:
# branches:
# only:
# - master
# - release_snapshot: # v0_10 branch only
# requires:
# - test
# filters:
# branches:
# only:
# - v0_11
Loading