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

What are the "tag" and "deployment" events in drone

Drone events support "push", "pull_request", "tag", "deployment" https://github.com/drone/drone-yaml-v1/blob/1c89a78f3ae4c8c70114203034a81fec59474bc2/main.go#L30 I have two questions: When tag and deployment will be trigger? who will trigger it?
Prakash Kumar
  • 2,554
  • 2
  • 18
  • 28
0
votes
1 answer

Drone self-hosted, pipeline routing between Drone servers

I have dev & prod kubernetes clusters with drone server in each. Both servers watching the same set of github repos. I want to do smth like: --- kind: pipeline name: artifacts drone_instance: dev # <--- magic routing steps: - ... trigger: …
Max Lobur
  • 5,662
  • 22
  • 35
0
votes
1 answer

How can I store JSON in Drone and write it to a file without it getting malformed?

Here's the context of what I'm trying to do. I would like have a Drone step to run database migrations against a Google Cloud SQL Postgres instance. I need to use Cloud SQL Proxy in order to access the database. Cloud SQL Proxy requires you provide…
RayB
  • 2,096
  • 3
  • 24
  • 42
0
votes
1 answer

How to forcefully fail drone CI

I am using appleboy/SSH drone plug-in to execute my test in a remote machine and generate a test report the issue When the test in remote machine fails it shows test failed, but in the drone server it shows integration passed. Is it possible to fail…
Seeder16
  • 23
  • 5
0
votes
1 answer

Setup an existing django docker project in my locale machine

I have a django project in github from my client. That project developed by using below technologys: 1. AWS EC2 2. Docker 3. Drone And inside the poject i have a docker-compose file and a .drone.yml file. But the prolem is how can i start…
Rashed Khan
  • 21
  • 1
  • 4
0
votes
1 answer

Drone.io Docker Plugin Daemon Configuration

How does one add a daemon.json (docker daemon configuration file) to the drone.io instance, so the image tag on pipeline steps can be configured to be used with private registries and client certificates?
Techradar
  • 3,506
  • 3
  • 18
  • 28
0
votes
0 answers

assertEquals(String, String) is failing in drone build

I am writing Junit test for apache camel route. I have a mock endpoint here. So instead of writing to a file I will get the body content to the mock end point. In the test method I am using assertEquals to validate the body that I receive in mock…
0
votes
0 answers

Converting vector from relative coordinate system to an absolute one

I'm trying to make a quadcopter drone. I'm using an mpu6050 to get acceleration & angular speed and then convert them to Roll / pitch / yaw With the acceleration, i'm also trying to get the speed & position by integration. However , i need them to…
0
votes
3 answers

Unable to read the resource file after deploying to Kubernetes

I am running local code in traditional tomcat server where as while deploying to Kubernetes my code of read resource file is not working. I placed nas.txt in resource folder. and File file = ResourceUtils.getFile("classpath:nas.txt"); //Read File…
Hearaman
  • 8,466
  • 13
  • 41
  • 58
0
votes
1 answer

what are drone.io 0.8.5 plugin/gcr secretes' acceptable values?

I'm having trouble pushing to gcr with the following gcr: image: plugins/gcr registry: us.gcr.io repo: dev-221608/api tags: - ${DRONE_BRANCH} - ${DRONE_COMMIT_SHA} - ${DRONE_BUILD_NUMBER} dockerfile:…
mosgjig
  • 537
  • 1
  • 9
  • 18
0
votes
1 answer

Calculating Extremes of Camera FOV Given Heading and Angle

If I have a unit vector H - a heading that represents a camera centre of view, how can I calculate corresponding vectors for H1, H2, H3 and H4 that represent the extremes of view given a given number of degrees of total width θw and height …
user4243325
0
votes
1 answer

Why drone cannot find my repo name with plugins/docker?

I'm trying to build and push image with drone.io's plugins/docker, but it seems cannot find my repo name. Here is the last log about the build step. ---> Running in afca20280587 Removing intermediate container afca20280587 --->…
Woko
  • 1,521
  • 12
  • 16
0
votes
1 answer

"OSError: [Errno 99] Cannot assign requested address" for communication between Jetson TX2 Board and PC host

I think the IP address and port number are correct checked by using ifconfig at server side, and the port is not bind by others at server side. So, I guess the problem is at client side. I have attached the running results at client side and netstat…
Ziyang Yu
  • 11
  • 1
0
votes
1 answer

How to make Drone Docker plugin to authenticate with a self-hosted registry having a self-signed TLS certificate

I'm using Drone 1.0.0-rc1 with the Docker plugin. My docker registry is only accessible via TLS, however the certificate is self-signed. The whole docker ecosystem complains about it with a similar error message, in case of the Drone build it's…
neo696e64
  • 1
  • 2
0
votes
1 answer

How to test my Kubernetes Architecture (With drone.io)

I'm currently working on a kubernetes project, and I want to put my work in prod, but before that, the company wants to be able to test the kubernetes architecture (create the right pod, communicate, etc... ). About the architecture : -It's a…
Nesta
  • 3
  • 3