Does drone support multi build at the same time

many repositories push code and only one is building others are pending,does drone support multi build at the same time

Yes, Drone supports multiple concurrent builds. Each agent is configured by default to execute 1 concurrent build. You can increase per-agent build concurrency by setting the DRONE_MAX_PROCS environment variable. For example, DRONE_MAX_PROCS=2 instructs the agent to execute 2 concurrent builds.

thank you it works,but i set DRONE_MAX_PROCS=5,it can execute 6 build !!!

I have not experienced this behavior, nor have I received similar reports from the community. If you are able to consistently repeat an issue I recommend sending a patch to fix.

bradrydzewski YoKv

Does drone support multi pipeline build at the same time?
Example: A have 5 steps on my pipeline, can I configure to run in parallel mode?

Thanks

Yes. See http://docs.drone.io/pipelines/

Fantastic! That is exactly what I was looking for.

Thanks

Is there a way to run more then one command on the same time to the same pipeline?

pipeline:
  backend:
    image: golang
    commands:
      - go build
      - go test
      - go integration-test

I would like to run that 3 commands as parallel mode

pipeline:
  backend1:
    image: golang
    group: backend
    commands:
      - go build
  backend2:
    image: golang
    group: backend
    commands:
      - go test
  backend3:
    image: golang
    group: backend
    commands:
      - go integration-test

wow!

That is great, thanks!