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

Drone CI runner can't find gitea server

I am trying to run a gitea server with drone. They are currently both hosted on the same ubuntu machine and the docker containers are set up through a docker-compose.yml file. When starting up all services I get the following error in the logs of…
2
votes
1 answer

Drone CI Stuck on Pending for arm

I'm trying to test ci/cd with gitea and drone but it is stuck in pending. I was able to verify if my gitea is connected to my drone-server here is my .drone.yaml kind: pipeline type: docker name: arm64 platform: os: linux arch: arm64 …
Jayson Gonzaga
  • 140
  • 1
  • 4
  • 11
2
votes
0 answers

SIGBUS error code=0x2 while running go test on CI

I'm not sure what could be the best way to explain this but we constantly observe our CI failing because of this SIGBUS issue. The error looks all internal to Go and we are clueless. We have run the test cases multiple times on our local boxes in an…
Noobie
  • 461
  • 1
  • 12
  • 34
2
votes
1 answer

Drone with Postgres - psql: could not connect to server: No such file or directory

I've tried setting up a drone server using the postgres plugin but I'm completely unable to get it working. I've done is to copy the default drone setup from the docs: --- kind: pipeline type: docker name: default steps: - name: test …
King Bee
  • 71
  • 1
  • 14
2
votes
1 answer

Drone CI, Unterminated quoted string

My .drone.yml looks like this: - name: project image: alpine:3.11 environment: DOCKERHUB_USERNAME: from_secret: DOCKERHUB_USERNAME DOCKERHUB_PASSWORD: from_secret: DOCKERHUB_PASSWORD volumes: - name:…
2
votes
0 answers

How to isolate the drone pipelines when running the same pipeline multiple times concurrently on the same drone runner?

I have pipeline that allow concurrency of pipeline, but when the same pipeline run in parallel my pipeline execution will fail in the E2E test. The test fail because test account will race for the session authentication and will logout others…
2
votes
2 answers

Example to connect from container to host service

I am new to Docker and Drone Programming. I was able to deploy a python script (that contains dronekit code) to docker container on my Windows 10. To run the script, I need to connect to a service on my host. I have provided a snippet below, Windows…
San123
  • 86
  • 1
  • 7
2
votes
1 answer

Building drone 8.5 into a container fails with "no such file or directory"

I have an automated build system, and I took the drone.io 8.5 docs on building, and placed them in a script which outputs the golang built binary. Then I use drone (ha) to build a dockefile that is ultimately used in production. I am trying to…
eignhpants
  • 1,611
  • 4
  • 26
  • 49
2
votes
1 answer

How do I send a build log with email notification for drone build

I want to send an attachment of build log with the email notification via drone build. For email notification, I am using I am using "drillster/drone-email" plugin for sending build email notification.
2
votes
1 answer

How to use Drone with self-hosted git repository

I have a self-hosted git repositories (not GitHub, not Gitlab, etc) Is there a way to configure Drone to work with my repo ?
Djangonaut
  • 5,511
  • 7
  • 40
  • 53
2
votes
2 answers

Drone IO Publish to ECR from another account

I'm using the Drone.IO CI/CD software to build and publish an image to an ECR in another AWS account, in the same region EU-WEST-1. I have setup the IAM artefacts and it is connecting but failing on the last step. It seems that Drone is ignoring my…
Garreth
  • 1,057
  • 2
  • 9
  • 24
2
votes
0 answers

Android Studio Gradle Sync Failed. Cause: org.gradle.api.internal.file.DefaultSourceDirectorySet

I just can't figure this out and am not sure where to look or how to read the log file. Could anyone help? Is this because of Kotlin? This is the error message: Gradle sync failed: Cause:…
2
votes
2 answers

Drone CI - DRONE_HOST

I am trying drone on a local ubuntu, with gitlab.com Every piece of code and example I find does not explain what the DRONE_HOST value should be as it seems to be obvious. But what can I put in this variable ? It seems there is some prerequisites at…
SmeagolGollum
  • 107
  • 1
  • 14
2
votes
0 answers

Drone.IO - how to evenly distribute jobs between two agents / workers in a round robin fashion?

My current CI setup is as follows: Machine #1 - Drone Server (/bin/drone-server) + Drone Agent (/bin/drone-agent) Machine #2 - Drone Agent (/bin/drone-agent) Running Drone 0.8.5. Both agents seem to be connecting to the Drone Server just fine but…
RushPL
  • 4,732
  • 1
  • 34
  • 44
2
votes
1 answer

DB Ownership process error running phoenix test in containerized elixir 1.6.1

I have an umbrella project compose by: gateway - Phoenix application core - business model layer notifications a dedicated app for delivering sms, email, etc… users user management, role system, and authentication. The three components are…