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

Intermittent Error on truffle test - Error: PollingBlockTracker - encountered an error while attempting to update latest block:

I have a CI pipeline on drone - This is how it executes - 'cd project' - 'npm install -g truffle' - 'npm i -g ganache@7.0.1' - 'ganache -p 9546' - 'echo "---> Installing local packages..."' - 'npm install' -…
Babita Bisht
  • 385
  • 1
  • 4
  • 18
1
vote
1 answer

Dockerizing a React project via Pipeline

Expanding on what I'm trying to accomplish: After committing code to a locally-hosted Git server, a Drone pipeline is to test, then build, and finally deploy a React project on said server. Limitations: I have minimal React & pipeline…
jumacs
  • 11
  • 2
1
vote
0 answers

Random Sonar analysis fail with "Failed to download analysis cache"

I am facing a recurrent and yet random problem during the sonarqube analysis step of a Drone CI build. Here is the .drone.yaml part: - name: code-analysis image: aosapps/drone-sonar-plugin settings: sonar_host: from_secret:…
1
vote
1 answer

Upload files in Drone Pipeline to Google Cloud Storage using gcs plugin

I have a drone cicd pipeline that builds a npm project which I want to upload to Google Cloud Storage (gcs). I found a drone gcs plugin which seems to be able to do so. But I don't know what to use for the token parameter. The documentation says:…
Andre Albert
  • 1,386
  • 8
  • 17
1
vote
1 answer

Drone Cron Job Not Firing

I've created a cron job in Drone CI using the following command drone cron add --branch master "foo/bar" "every-5-mins" "0 */5 * * * *" And when I look in the UI, I can see the cron job has been created. However, it doesn't fire, even though I have…
Metro
  • 873
  • 8
  • 19
1
vote
1 answer

How does the drone clone the repository?

For gitlab, if I get the client_id and client_secret, how can I clone the repository, just like what drone does. Is there any API or something?
N Fx
  • 41
  • 3
1
vote
1 answer

Error sim_vehicle.py Ardupilot: ../../libraries/AP_GPS/AP_GPS.cpp: In member function ‘void AP_GPS::send_mavlink_gps2_raw(mavlink_channel_t)’

My goal is to simulate the ArduCopter in Gazebo, I am on Linux Ubuntu 20.04. After building the setup for Ardupilot like in the description: https://ardupilot.org/dev/docs/building-setup-linux.html#building-setup-linux I am using the following…
Elocin
  • 11
  • 1
1
vote
2 answers

Drone version not obtained M300 OSDK

I am trying to use an Nvidia Jetson Nano as an onboard computer to communicate with the Matrice 300 RTK using the OSDK. The computer and drone are connected using the OSDK Expansion module, and I am using the dual USB cable (USB 3 Type A) to connect…
1
vote
1 answer

Drone sometimes fail with error related to "No space left on device"

Sometimes we experience a drone pipeline failing due to a lack of disk space, but there is a lot of space. drone@drone2:~$ df -H Filesystem Size Used Avail Use% Mounted on udev 8.4G 0 8.4G 0% /dev tmpfs 1.7G 984k …
112Legion
  • 1,129
  • 12
  • 25
1
vote
1 answer

Issue: Unity Project - Drone-Simulation : Change camera perspective (C#)

for my university research, I am currently building a simulation environment via Unity (including a drone which has to fly through a factory). What I have done: created environment implemented a drone (includes the controller-script and the…
1
vote
0 answers

how do I request enum values from a drone via mavlink?

I am programming a drone with java script and using node-mavlink https://github.com/padcom/node-mavlink. I am trying to figure out how to detect if the drone is taking off, in the middle of flying or landing. When I read the mavlink documentation it…
codes
  • 21
  • 4
1
vote
1 answer

How can I verify an HTTP HMAC Signature in Bash?

I'm needing to verify an HTTP HMAC signature for a program I use (Drone CI, trying to create an extension), but nothing I'm trying is getting the results to match. Specifically, the HTTP request looks like this: POST / HTTP/1.1 Host:…
1
vote
0 answers

How can I access redirect url from keycloak inside Docker container with cy.Visit()?

State: I've got an application, that is built with Angular (as Front-End) and Quarkus as (Back-End). The application first redirects the user to KeyCloak, and redirects back to the application (does not matter if online or localhosted) after a…
1
vote
1 answer

Tello Drone Video Streaming Latency (Python)

I am currently stuck with high video streaming latency on python with OpenCV. I have the video streaming set up but the latency (about 800ms) is hard to deal with when manually controlling the drone with pygame. I know that it isn't the drone…
1
vote
1 answer

FFMPEG Unable to find a suitable output format for 'pipe:' pipe:: Invalid argument

I want to stream video from my drone real time to a WEBUI using ffmpeg. But i get the follwong errors. The code works but i don't think ishould have gotten this error. Can somebody help with this issue? This is my drone commands along with the…