Questions tagged [drone.io]

Drone is a hosted continuous integration service. It enables you to conveniently set up projects to automatically build, test, and deploy as you make changes to your code.

Drone is an open source continuous integration project, with an optional enterprise version. It enables you to conveniently set up projects to automatically build, test, and deploy as you make changes to your code.

Drone integrates seamlessly with GitHub, Bitbucket and Google Code as well as third party services such as Heroku, Dotcloud, Google AppEngine and more.

It is developed by Brad Rydzewski and Adam Singer - the free plan provides unlimited builds for open source projects.

It supports many languages and frameworks like

  • C / C++
  • Dart
  • Go
  • Haskell
  • Groovy
  • Java
  • Node.js
  • PHP (Beta)
  • Python (Beta)
  • Ruby (Beta)
  • Scala

GitHub Website

401 questions
3
votes
1 answer

Bad gateway on traefik docker

I build traefik with cloudflare CDN. I used docker container run command to execute my docker container execute by Drone CI. I have an issue when I successfully built docker container which leads to bad gateway on…
Abel
  • 1,494
  • 3
  • 21
  • 32
3
votes
1 answer

Share variables between steps in drone.io

It seems to me that drone.io does not share parameters across pipeline steps. Is it possible to read the parameters for the plugins from a file, e.g. a directive like "from_file" similar to the already existing "from_secret"? This is how one could…
Maximilian Mordig
  • 1,333
  • 1
  • 12
  • 16
3
votes
2 answers

Drone.io failed to received webhook from GitHub, but It's work if I send webhook payload manually

I've using Drone as CI/CD for a year. But today my drone server just suddenly fails to received webhook from GitHub. So I've go to GitHub's webhook section in the repository. And I see this But the weird part is if I'm using the same payload as…
3
votes
2 answers

Drone CI secrets not populating

I am trying to push a docker image into a private registry in Drone 0.8.5 and it works when I hardcode username and password into the pipeline however I have tried adding both the registry details in the registry tab and as secrets. Registry…
DubC
  • 33
  • 4
3
votes
0 answers

Builds stuck in pending state drone

I'm using drone:0.8 with the following configuration but the only two first jobs are succeeded in building. The rest of jobs are stuck in the pending state. I'm deploying drone using Docker Swarm stack deploy. Here is my configuration file: version:…
Iman
  • 1,017
  • 10
  • 26
3
votes
1 answer

Drone - share docker-compose configuration?

Trying to reduce services configuration duplication between my docker-compose.yml and .drone.yml files. Drone issue https://github.com/drone/drone/issues/906 discusses a potential config feature like this: compose: from-file:…
Dan Tanner
  • 2,229
  • 2
  • 26
  • 39
3
votes
2 answers

GAE activate-service-account from drone pipeline (drone on k8s): No key could be detected

I have drone running on a k8s cluster. One of my pipelines is for a GAE application. I've been fighting with secrets for a while. It's a bit of a mission to make my secrets available. What I ended up doing was loading my key file name and contents…
Sheena
  • 15,590
  • 14
  • 75
  • 113
3
votes
1 answer

Can I expose ports in .drone.file? drone.io

I use Drone as CI tool. I have drone sever and drone agent which are docker containers. I connected Drone to my GitHub repository. And it works perfectly it responds for each pull and build docker container. I can see built container in output of…
Ivan Hreskiv
  • 1,045
  • 1
  • 11
  • 18
3
votes
3 answers

Drone CI failing on clone step

I'm running on a machine in docker-compose the following: gitlab drone (server) drone (agent) and when I trigger a build (or triggered by git push), drone keeps on failing on the issue: git init Initialized empty Git repository in…
Amazia Gur
  • 1,692
  • 17
  • 16
3
votes
3 answers

How to view a Drone secret using the CLI?

I want to see what the value is of a drone secret. Is there any way to view drone secrets using the drone CLI? I don't want to see it using echo "$secret" in the build.
Manoj
  • 111
  • 2
  • 8
3
votes
1 answer

Drone CI web not responding

I followed this Digital Ocean's Drone Setup Tutorial but didn't manage to get Drone CI correctly setup. It doesn't response to any requests when I tried to access until it is timeout. I can confirm that I have expose port in the config. Log from…
XPLOT1ON
  • 2,994
  • 2
  • 20
  • 36
3
votes
1 answer

How to deploy on custom docker registry?

I setup a simple go project and I wish to build and deploy a simple docker image to my private registry. This is my .drone.yml: pipeline: build: image: golang commands: - go build docker: image: plugins/docker …
3
votes
1 answer

Hex Cannot Be Found on Dockerized Phoenix App when running on Drone

So I currently have a setup wherein I deploy my dockerized Phoenix application to run tests on a self hosted Drone server. Currently the issue arises that no matter what Dockerfile I use(currently alpine-elixir-phoenix or a base elixir image with…
Faolain
  • 37
  • 5
3
votes
1 answer

Drone replacing environment variables with empty strings

Something happened with my Drone configuration. It's not finding the environment variables since today. Until few days ago, I could run a pipeline, but today I can't. This is the step into the pipeline: pipeline: [...] sdk: image:…
JonDoe297
  • 1,601
  • 1
  • 15
  • 21
3
votes
2 answers

Whether Drone support configuring timeout value for build

I setup a local drone server for our CI. And our project is a java project managed by maven. When run the mvn clean install command, maven will download all dependencies into ~/.m2 directory. The first time run this command will download a huge of…
Joey Yi Zhao
  • 37,514
  • 71
  • 268
  • 523
1 2
3
26 27