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
4
votes
2 answers

Can Drone be run in a platform agnostic way (like a manual webhook mode)?

When trying to setup Drone, the getting started guides all describe how to link Drone with an existing git service provider (like GitHub, BitBucket, etc). The integration is tight, all your repositories are available and it's a zero config setup to…
David Alsh
  • 6,747
  • 6
  • 34
  • 60
4
votes
0 answers

pip and private repositories

I'm deploying a python application and I'm trying to create a pipeline with Drone.io In my main application, I have multiple dependencies that are located in private Github repositories…
Jérémy Octeau
  • 689
  • 1
  • 10
  • 26
4
votes
1 answer

how to run .drone.yml in windows runner server

drone.yml for my project (C# - .net framework).my runner server is windows but i can run .drone.pipeline in server and get error permission denied.(my project (c# -.net core) is worked on linux runner server).i can't run project on linux runner…
C inDepth
  • 55
  • 5
4
votes
2 answers

How to pull images from private docker registry in drone ci pipeline

Answer Problem I need to use an image from a private docker image registry in my test pipeline I could not find any (edit: overlooked) up to date documentation on how to use a private docker registry with drone in general or with specifically…
frncsdrk
  • 487
  • 5
  • 12
4
votes
1 answer

Can't tag images on drone docker build: Error parsing reference: ":latest" is not a valid repository/tag: invalid reference format

I'm trying to use drone with gitlab. Before the step of pushing the docker image to my private registry, it raise an error: Successfully built 7afb99118ae2 Successfully tagged ae872a846df0d8df884e89bd3a77cacf49b8f7de:latest + /usr/local/bin/docker…
Woko
  • 1,521
  • 12
  • 16
4
votes
1 answer

Drone.io auto_tag with branch name

Using the drone docker plugin in order to create my cloud images, I would like to simplify the workflow by having drone automatically tagging my images depending of the git branch name I'm working with. I saw a auto_tag but unfortunately it always…
Jay Cee
  • 1,855
  • 5
  • 28
  • 48
4
votes
1 answer

Config file management

When using build system like Drone.io, or Jenkins, what is the best way to manage configuration files? In Jenkins I use a plugin that let me create some config text files. However, there is no grouping. I wish to know how you guys are managing your…
Khanetor
  • 11,595
  • 8
  • 40
  • 76
3
votes
0 answers

How do I get the GPS_velocity?

How to get the previous_lat,lon and current_lat, lon, then caculate the speed each 0.1s. I have some code about cacluate the distance with different lat ,lon. but i don't now how to calcute vehicle itself distance and velocity. from __future__…
YUKI
  • 29
  • 1
3
votes
0 answers

How to make a drone pipeline to be run when another ignored pipeline got in failure

I have a pipeline in my .drone.yml file which its failures will be ignored in this way: .drone.yml - name: 'My ignored pipeline' failure: ignore Now I need another pipeline to be run when the 1st pipeline got into failure. I did it in this…
3
votes
0 answers

Wordpress CI/CD with database?

So, I want to implement CI/CD with wordpress project, but database is the problem. Are there any solutions for some kind of "synchronization" of the database, at least not complete? Or at least some solution? Nevertheless, on a prod client can…
3
votes
1 answer

Drone CI/CD only stuck in exec pipeline

When i use docker pipeline it will success building. But when i use exec pipe line it's always stuck in pending. And i don't what going wrong. kind: pipeline type: exec name: deployment platform: os: linux arch: amd64 steps: - name: backend…
Fush1
  • 93
  • 1
  • 7
3
votes
1 answer

How to use cron triggers in drone in addition to step conditions?

Say I have this drone.yaml file: kind: pipeline type: kubernetes name: default - name: echo-hello image: alpine commands: - echo "hello" when: event: - push - name: echo-goodbye image: alpine commands: …
Lena
  • 162
  • 1
  • 12
3
votes
0 answers

Pass Value Between Pipelines

I have a drone file containing multiple pipelines that run in a sequence via dependancies. In the first pipeline a value is generated that I would like to store as a variable and use in one of the other pipelines. How would I go about doing this?…
darren25
  • 275
  • 1
  • 5
  • 16
3
votes
1 answer

pipeline type (exec) is not supported with 'drone exec'

I am having issues running drone exec on my local Machine Ubuntu, here is how i run it and .drone.jsonnet content .drone.jsonnet: local default_deps_base='libsystemd-dev libboost-thread-dev libgtest-dev ' + 'libboost-serialization-dev…
Jacob
  • 31
  • 4
3
votes
1 answer

What does the "pull" parameter do in drone?

In working with drone I've seen several cases where pull: true is set in a step. Though it's not clear if that's needed since some steps omit it. It is used in several examples on the drone website but not explained. PS: I'm writing this and…
RayB
  • 2,096
  • 3
  • 24
  • 42
1
2
3
26 27