Closed skanthekar closed 4 months ago
I think the steps should be like:
I think the steps should be like:
- Add CircleCI connection
- Add CircleCI data scope under the connection
- Setup the Scope Config properly
- Add connection and data scope to the Project
- Execute the project
- See dashboard
@klesh Thanks for reply i will try these steps and let you know
Hi @klesh
I tried steps mentioned by you. but it's not working for me Please find below screen shots for more information
Please guide me
What does your pipeline data look like? Can you share some samples?
Its simple pipeline that i have created for testing. Build and Deploy. using echo message
@skanthekar I don't know how to help with the information at hand. 😂
Hi @klesh. I ran into the same issue with 1.0.0-beta6. Using the CircleCI config below and setting the name to build-stuff
is seen as deployment by DevLake. Setting the name to deploy
is not seen as deployment. DevLake seems to be matching on workflow name only and ignoring the job name.
version: 2.1
jobs:
build-image:
docker:
- image: "cimg/base:stable"
steps:
- run:
name: "building-image"
command: |
echo "We are pretending to build an image!"
sleep 15
echo "pipeline.id is << pipeline.id >>"
echo "pipeline.number is << pipeline.number >>"
deploy:
docker:
- image: "cimg/base:stable"
steps:
- run:
name: "update-chart-of-helm"
command: |
echo "We are pretending to update Helm chart!"
sleep 15
echo "Done!!"
workflows:
build-stuff:
jobs:
- build-image:
name: build
- deploy:
name: deploy
requires:
- build
This issue has been automatically marked as stale because it has been inactive for 60 days. It will be closed in next 7 days if no further activity occurs.
This issue has been closed because it has been inactive for a long time. You can reopen it if you encounter the similar problem in the future.
Question
While adding CircleCI data connection in DevLake to collect Data for DORA matrix. I can not see analysis data from CircleCI CICD jobs.
Scenario that i expected. Please correct me if i assume anything wrong.
Is any one guide me for CircleCI and Devlake integration ?
Screenshots
If applicable, add screenshots to help explain.
Additional context
Add any other context here.