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
1
vote
1 answer

GitHub integration error "cannot verify team membership"

I have launched a drone/drone:0.8 using docker, and providing these environment variables: DRONE_ADMIN=stevecrozz DRONE_GITHUB=true DRONE_GITHUB_CLIENT=... DRONE_GITHUB_SECRET=... DRONE_OPEN=true DRONE_ORGS=myorg When I attempt to log in, I…
Stephen Crosby
  • 1,157
  • 7
  • 19
1
vote
0 answers

Using Ci/CD to publish php composer packages

I use a CI pipline runner called Drone. We push to drone and it runs our tests then publishes an artifact. That could be an NPM package, a new version of an app, or a Docker image. How can I do this with a PHP Composer package. It seems composer…
AndrewMcLagan
  • 13,459
  • 23
  • 91
  • 158
1
vote
1 answer

Drone CI pipeline does not get triggered with Github deployments

I am trying to trigger the Drone pipeline on the deployment events gets published by GitHub onto the webhook(created by Drone), for this i have done the below things: I have updated GitHub webhook for Drone to only gets triggered when any…
Sandeep Sharma
  • 111
  • 1
  • 6
1
vote
1 answer

Building privately-hosted base image [drone.io]

I am trying to deploy a web service using Drone and the docker plugin. My image takes about an hour to build, due to a number of large dependencies. To speed up build times, I would like to place a number of my service's dependencies (that are not…
PaddyT
  • 11
  • 3
1
vote
2 answers

Drone.io and jmeter integration

I am using drone.io for my CI/CD pipeline. I want to use jmeter/gatling as part of this for response assertion. Currently, drone.io is not providing a plugin for the same. I was thinking of integrating a jmeter run by creating a bash plugin and…
Shad
  • 45
  • 1
  • 7
1
vote
1 answer

drone.io on k8s. letsencrypt cant provide secure connection

I'm deploying drone.io on gke k8s using helm. It works great if I have LetsEncrypt off. But I really would like https support. Here's my service: apiVersion: v1 kind: Service metadata: name: {{ template "drone_ci.fullname" . }}-external labels: …
Sheena
  • 15,590
  • 14
  • 75
  • 113
1
vote
1 answer

How to use Drone behind Traefik? Error: received bogus greeting from client

I'm trying to setup an standalone docker installation with drone, traefik and other services, with the following configuration: version: '2' volumes: drone-data: gogs-db-data: gogs-data: gogs-conf: services: #Database for Gogs - PostGres …
arthas_dk
  • 443
  • 5
  • 15
1
vote
1 answer

vehicle.location.local_frame return none

I use px4 AC3.5.4 with raspberry. My target is autonomous positioning drone in his local frame without global (gps). I arming drone in GUIDED_NOGPS mode and takeoff. I make request for my position in local frame with next command:…
1
vote
1 answer

Error standard_init_linux.go:178 while starting the docker image

I built the docker image using following Dockerfile with Drone build server. FROM centurylink/ca-certs WORKDIR /app ADD VERSION . ADD conf/ conf/ ADD resources/ resources/ ADD app app # Expose the application on port 8080 EXPOSE 80 ENTRYPOINT…
Anuruddha
  • 3,187
  • 5
  • 31
  • 47
1
vote
1 answer

Build step in notification

I would like to display which build step(s ?) failed in our slack notification. I couldn't find any reference here http://plugins.drone.io/drone-plugins/drone-slack/
miiimooo
  • 91
  • 1
  • 5
1
vote
1 answer

How to get a slack notification when build fails?

When my build is successful I get a slack notification, when it fails I do not. Looking at the Drone web UI it looks like it stops once the build fails and the slack plugin is never run. A successful build results in notify happening: A failed…
Kris
  • 19,188
  • 9
  • 91
  • 111
1
vote
1 answer

agent can't connect to server "DRONE_HOST is not properly configured"

I tried setting up drone 0.8.1 but the agent can't connect to the server even though from my point of view everything looks good. The following is my compose file: version: '2' services: drone-server: image: drone/drone:0.8.1 ports: …
Niklas Karoly
  • 25
  • 1
  • 5
1
vote
0 answers

Drone.IO – GitLab address with hosts file

I have a GitLab instance on a fixed internal IP, and configured the hosts file on the clients if a hostname which points to that IP. But we are unable to make Drone work when using the hostname. We have Gitlab on port 80 and Drone on port 8000. It…
Amazia Gur
  • 1,692
  • 17
  • 16
1
vote
2 answers

Drone conditional builds

Trying to set up a conditional build in the drone.yml, here how it looks: feature-dev-deployment: when: event: push branches: include: feature/* exclude: master The above code triggers for every build irrespective of branch name and…
1
vote
1 answer

How to transfer a value from one build container to another in drone.io CI pipeline

I know I can write it to the mounted host file system which will be shared amongst the multiple build containers. But how can I make use of that file in a drone plugin container like docker-plugin? Or, is there any other way to pass arbitrary data…
so-random-dude
  • 15,277
  • 10
  • 68
  • 113