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
0
votes
1 answer

How to specify a user for a given build stage in drone?

I'm attempting to use a very "lambda-like" image for running some tests, but it is so lambda-like that the user has no real permissions (including those needed to install my test engine). Is there a way to specify the user the image executes…
NorthIsUp
  • 17,502
  • 9
  • 29
  • 35
0
votes
1 answer

Can't get drone.io CI to share files between pipelin steps

here is my .drone.yml: pipeline: test: image: node:10 commands: - npm install --production - npm run build --production publish: image: plugins/docker repo: myhub/image_name when: event: push branch: master the…
Sulliwane
  • 410
  • 6
  • 16
0
votes
1 answer

Configuration for multi-step parallel stages

I have a mono-repo that contains multiple services. Ideally, I want to test each service in parallel. Each branch has 2 stages: test benchmark To give something similar to this: clone / \ / \ / …
QuantumLicht
  • 2,103
  • 3
  • 23
  • 32
0
votes
1 answer

Multiple Graphs in one Tensorflow Session

I am currently trying to implement a code that will allow my drone to navigate indoor using tensorflow. I need to run two models in a single session. One is for the main navigation--which is a retrained Inception V3 model responsible for classifying…
0
votes
0 answers

Calculate Actual Velocity with Optical Flow

I have an Intel Aero quadcopter with a rangefinder, gyroscope, and downward-facing optical flow calculator. I can get optical flow values in rad/s, but I need to estimate the x-and-y velocities of the drone using the information I have available. I…
delia
  • 1
  • 2
0
votes
1 answer

How to upload a file to Azure Blob Storage using Drone.io

I have a .deb file as my project artifact. I would like to know how upload it to Azure Blob Storage using Drone.io!
0
votes
1 answer

DroneCI server 0.8 unable to open database file

I'm struggling to get DroneCI up and running, using the below (sanitized) docker-compose.yaml. (See link at bottom for output from docker-compose up executions). # Docker compose file syntax: version: '2' services: drone-server: image:…
x10an14
  • 189
  • 1
  • 9
0
votes
0 answers

Docker - drone.io drone-agent installation getting errors

I am new to Drone ci/cd while installing getting the below issues and I am stuck at starting point. See below the installation steps I followed.... I've installed docker and docker compose. Below is the docker file which I used to configure cat…
sravan
  • 19
  • 3
0
votes
0 answers

Trigger drone tag event with api?

I'm using the drone downstream plugin and it doesn't appear to be able to trigger a tag event in the downstream repo, only push. From there I was looking into the drone api to determine if I can hit the api to trigger a tag, but I'm not seeing it in…
jmoney
  • 443
  • 2
  • 10
0
votes
2 answers

Drone.io secrets not populating in yml appropriately and documentation seems inaccurate

I am running version 0.8.4 as a container in my lab. CLI is also at version 0.8.4 I am trying to use a secret in a command one of my containers is trying to run. Following the documentation has me needing to sign a repo to allow the job to consume…
nctiggy
  • 73
  • 9
0
votes
2 answers

Get latest builds for each branche in Drone.io

IS there a way to retrieve the latest builds for each branch in drone.io.. Travis-ci support this : api GET /repos/{repository.id}/branches and show this in its UI: https://travis-ci.org/{user}/{repository}/branches
0
votes
1 answer

Drone segment in URL cannot contain colon

I got the below error while setting up Drone CI. myid:bin domain$ drone info parse “http://drone5.internal.com/”/api/user: first path segment in URL cannot contain colon
Azar
  • 31
  • 6
0
votes
1 answer

Set up secrets in Drone return empty value

I'm trying to setup secrets in Drone but without any luck. A simple operation like adding a secret doesn't work for me. I've tried in several ways but no result. I'm running Drone 0.5. this is what I run: drone secret add --skip-verify=true…
Mazzy
  • 13,354
  • 43
  • 126
  • 207
0
votes
0 answers

How do you define pitch yaw for quadcopter with Multiwii?

I have a problem defining pitch and yaw for my quadcopter. Every time I set my PWM for my yaw to 1500, it's not affecting my yaw, but instead it's affecting my roll. I did not even do anything to my roll, and the PWM value of my roll is locked to…
Kodean
  • 1
  • 1
0
votes
1 answer

Tagging in gogs not triggering build with drone.io

I'm using drone 0.8.1 with gogs. When I commit to master a build is triggered. When I tag the repo in gogs, no build is triggered and no docker image built like I would expect. Here is my .drone.yml file: pipeline: docker: image:…
monty0
  • 1,759
  • 1
  • 14
  • 22