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
3 answers

exclude one file in 'for file in ; do ; done' command

since a few weeks I've been using Drone.io a CI/CD tool and found out that only bin/sh commands can be executed in it and not bin/bash. Now I'm looking for a one line command to find files on '*.yaml' except 'secrets.yaml' and run a command with the…
Coen17st
  • 147
  • 1
  • 9
0
votes
1 answer

Drone build and deploy

I'm setting up a pipeline for a java app. I can successfully build the app into a JAR, but I then want to create a docker container and add the JAR to that container. My jar file is created at /drone/src/target/app.jar However, when I try to ADD the…
Charles
  • 11
0
votes
1 answer

AirSim get altitude

I am using Microsoft AirSim with Unreal engine, and connecting with python API. I am using the LandscapeMountains project available through Unreal. I am able to capture the altitude with client.getGpsData().gnss.geo_point.altitude However the…
Tim Johnsen
  • 144
  • 10
0
votes
0 answers

How to get homography matrix from gps information

I am working a gps-denied UAV localization project. I am reading this paper GPS-Denied UAV Localization using Pre-existing Satellite Imagery. In this paper, they try to align a UAV frame sequentially with a satellite map using an homography. The…
LearnToGrow
  • 1,656
  • 6
  • 30
  • 53
0
votes
1 answer

Rotational Blur

From a drone images dataset, I would like to detect rotational motion blur. My purpose is not to correct it but rather apply a threshold to remove the worst images. What is the easiest solution to do that ? Thanks
zarg404
  • 310
  • 2
  • 5
0
votes
2 answers

Drone ignores pullrequest:created webhook sent from bitbucket cloud

My drone CI server configured a webhook for several events on a private bitbucket cloud repository, among those events are several pull request related events (create, update, decline and more). I configure the following pipeline on my repository #…
0
votes
0 answers

connecting to local mongodb from drone.io

mongodb is running on my local machine and i want to connect this mongodb from drone.io. but i am getting error message as below com.mongodb.com.mongodb.MongoTimeoutException: com.mongodb.MongoTimeoutException: Timed out after 30000 ms…
0
votes
1 answer

Unable to set context in Drone plugin drone-gcr (and drone-docker)

Per this bug drone docker plugin question... And per the documentation... The context parameter just doesn't work. I keep getting file not found errors in the logs. How do I set the context in drone-docker and drone-gcr plugins? name: publish image:…
meh
  • 2,591
  • 4
  • 20
  • 33
0
votes
1 answer

Gogs + Drone: Gogs webhook return 400 with Cannot find repository

Drone CI has this repository in the drone home page, however, gogs webhook request reposonse 400 with cannot find the repository Gogs webhook make a POST/hook request. { "ref": "refs/heads/master", "before":…
0
votes
0 answers

How to install python3 in local drive?

I am trying to install PX4 firmware on Windows 10 & built it using Cygwin toolchain. However, when I use the make command to build the program, it says python3 not available. I already installed Python 3.8 & it shows in Git bash so why is it not…
Sultan Morbiwala
  • 171
  • 1
  • 3
  • 15
0
votes
1 answer

How can we deploy docker image of rails application in .drone.yml

I am working on integrating a drone CI/CD with a rails application. As we don't want to make our code public, we can't store/get that image from Docker Hub. So I am working around how I can deploy the docker image of our application in .drone.yml…
0
votes
1 answer

Drone CI/CD - container cannot find .NET SDKs

I'm using .NET Core 3.1. using drone to do C/D. My .drone.yml is kind: pipeline type: docker name: deployment steps: - name: build image: registry.cn-hangzhou.aliyuncs.com/yoyosoft/dotnet/core/sdk commands: - dotnet restore src/YOGA.Api …
Fush1
  • 93
  • 1
  • 7
0
votes
1 answer

Drone error: Login Failed. User limit reached

Recently, some colleagues have started working in my team, so I showed them the basics of drone, but when they wanted to access our drone server they get that message: Login Failed. User limit reached We login via Github and they have access to the…
makeMonday
  • 2,303
  • 4
  • 25
  • 43
0
votes
1 answer

Why chmod and doctl not found?

I have created a docker image that has the following content: FROM ubuntu:20.10 RUN apt-get update RUN apt-get install -y curl RUN apt-get install -y git RUN curl -L…
softshipper
  • 32,463
  • 51
  • 192
  • 400
0
votes
1 answer

run ./build.sh file in drone .yml file

I am running this .yml file kind: pipeline type: docker name: default steps: - name: test image: ubuntu commands: - apt-get update - apt-get install git -y - ./build.sh bin first, two commands are running correctly but in the last…