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

Testing Ansible roles in Drone CI, systemd services not working

When testing Ansible roles, my systemd services fail to startup. This is the error I get, TASK [memcached : Packages Present] ******************************************** changed: [localhost] => (item=[u'memcached', u'libmemcached']) TASK…
J. M. Becker
  • 2,755
  • 30
  • 32
0
votes
1 answer

Drone.io Invalid or missing image

I'm trying to use drone to run a mysql service Here is my .drone.yml file pipeline: clone: skip_verify: true services: database: image: mysql:latest I've try with library/mysql and mysql for the image but drone keep saying that the image is…
creekorful
  • 351
  • 4
  • 14
0
votes
2 answers

drone cannot cancel my non-running process, even though it is running

I'm running drone CI. I have a build that just wont stop. It's status is running but I cant stop it because Cannot cancel a non-running build. Here are the exact commands. sheena@ci:~$ drone build info waxd/waxed_backend 302 Number: 302 Status:…
Sheena
  • 15,590
  • 14
  • 75
  • 113
0
votes
2 answers

Drone.io | Create docker-compose settings

I can't connect to Drone.io with my GitHub. And have several problems with the app: 1) drone-agent can't connect to server dodge@comp:$drone agent 28070:M 15 Nov 22:04:01.906 * connecting to server http:// 28070:M 15 Nov 22:04:01.906 #…
Dmytro
  • 61
  • 2
  • 13
0
votes
1 answer

using iphone or Android as GPS device

I'm trying to make an autonomous drone and use the "follow_me" code from example of dronekit python. Is there any way I can turn my iPhone or Android tablet into a GPS device and export the coordinate into a file. Then, I can run a code to read that…
Kenny
  • 1
0
votes
1 answer

Drone.IO - Using GitLab in SSH mode

We would like to disable http access on our GitLab instance and use SSH only. Can drone somehow communicate with GitLab over SSH?
Amazia Gur
  • 1,692
  • 17
  • 16
0
votes
1 answer

Can't run drone CI with my local gitea server, getting error while authenitcating

I want to play with drone CI on my local machine. I have installed gitea on my mac via brew. I can login with root login http://0.0.0.0:3000/ and everything works Then I start the drone server like that: version: '2' services: drone-server: …
Alexander Kondaurov
  • 3,677
  • 5
  • 42
  • 64
0
votes
1 answer

grpc issue with Drone Agent - Drone IO 0.8

I am running Drone Server and Drone Agent on the same instance, i am trying to connect with the private ip of the instance. If I curl the ip with port, I get a proper html page. But in Drone Agent logs I get this continuously drone-agent_1 | INFO:…
Shaurya Chaudhuri
  • 3,772
  • 6
  • 28
  • 58
0
votes
1 answer

How do I use the drone secret command in the current version?

I want to add an ssh key to my drone secrets, but can't get the command to work. I've tried many versions of the command found on various stackoverflow/documentation pages, but none of them work. The command help also gives an entirely different…
nialna2
  • 2,056
  • 2
  • 25
  • 33
0
votes
2 answers

How to access parent's build number in Drone.IO when triggering a forked build using deployment hook?

I'm trying to build a CI pipeline with drone.io. The steps are: Build a docker image Tag the docker image with the drone_build_number Deploy the image to the staging environment, "ECS, please deploy myimage:drone_build_number" The deployment…
Rendijs S
  • 365
  • 1
  • 3
  • 12
0
votes
2 answers

Drone CI: Why does running a npm script that uses Selenium exits before it finished?

I have a drone setup, and my pipeline runs the following: pipeline: test: image: node:8.3.0 commands: - npm install --only=dev - npm run automation The automation script in my package.json is as follow: "automation": "node…
nialna2
  • 2,056
  • 2
  • 25
  • 33
0
votes
1 answer

Builds with postgres service are stalling

I haven't run this particular build in a month or so, and I recently updated from drone version 0.5 to 0.7.3. I've hit an issue where a a build with a postgres service never completes. According to the logs, it should be accepting connections, but…
counterbeing
  • 2,721
  • 2
  • 27
  • 47
0
votes
1 answer

Drone YAML if condition is not working

I have below conditional logic in the Drone YAML, but I saw that the control is not going inside that, even though drone branch is "develop". How to fix this, did I do anything wrong? commands: - "./gradlew clean build" - echo…
Bravo
  • 8,589
  • 14
  • 48
  • 85
0
votes
1 answer

Apache can't display Drone via ProxyPass

Problem I followed this Drone Setup Tutorial but I didn't manage to get Drone CI correctly setup with an Apache server: Drone does response to any requests when I tried to access it over an IP. (In my case: http://192.168.99.100:8000/) But I can't…
Suriyaa
  • 2,222
  • 2
  • 25
  • 44
0
votes
0 answers

drone failure while doing a gradle build

I am trying to do a ./gradlew build in drone using the base image openjdk:8-jdk-alpine. But my java needs to connect to a https source to get some files and it fails while doing this since the base image doesn't have the certificates incorporated.…