We’re currently using GH actions, but we’re also moving a part of our CI jobs to drone (on a self-hosted instance) for faster builds. Now, we need multiple statuses to be reported, like the ones provided by GH actions as it is more convenient for us (see the attached image). Does this happen on drone by default?
Hi @ohsayan , can you clarify what is multiple statuses means? Are you looking for execution done per branch or build status (tick) listed will be displayed?
Regards,
Support team
A build status (‘tick’) for every pipeline (or something similar). So let’s say that I have to:
- Run a build (say
make
) - Run tests (say
make test
) - Push to docker
- Upload builds to S3
…
then I’d want to see something like:
-
ci/build
-
ci/test-suite
-
ci/docker-image
-
ci/publish-bin
That is to say, I’d like to see the status for each pipeline as a ‘tick’ in the commit status, instead of having to manually check the drone UI.
Drone does not support setting multiple or custom statuses. See these threads for alternate solutions that you can implement:
1 Like