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

Drone instalation error: level:fatal,msg:main: source code management system not configured

I'm trying to follow the drone documentation to install drone. Docker logs drone-server gives me this error {"level":"fatal","msg":"main: source code management system not configured","time" Here is my docker-compose.yml version: '3' services: …
markhorrocks
  • 1,199
  • 19
  • 82
  • 151
0
votes
0 answers

How to push Helm Charts to Azure Container Registry using Drone?

Could someone please give me some pointers on how to push/pull Helm charts to Azure Container Registry using Drone, whether its possible or not? I could not find any documentation regarding that.
0
votes
1 answer

How to start a docker container inside the setup?

I have created a DroneCI pipeline with the following content: kind: pipeline type: docker name: Build auto git tagger steps: - name: test and build image: golang commands: - go mod download - go test ./test - go build…
softshipper
  • 32,463
  • 51
  • 192
  • 400
0
votes
1 answer

How to authorize in a maven repository using drone.io

So I got a self-hosted instance of drone running on my server alongside a nexus3 repository. Now I have a java project that should be built, tested and then deployed into the repository every push, which works fine until we get to the deployment…
Md5Lukas
  • 1
  • 5
0
votes
1 answer

Is there any way to dynamically convert a Jenkinsfile into a Drone.yml pipeline configuration?

I currently have some existing Jenkinfiles from an older Jenkins CI/CD pipeline configuration. I've started migrating services to Drone CI recently but not quite sure how some of the Jenkins (groovy) commands translate to Drone's yaml…
Raul Butuc
  • 319
  • 1
  • 12
0
votes
1 answer

Drone Repo Add throwing error - No help topic for 'add'

Getting the following error when using drone cli to add/activate repo No help topic for 'add' I can confirm I am successfully login and I am an…
Ben Isaac
  • 69
  • 1
  • 10
0
votes
2 answers

how to setup drone with gitea behind jwilder nginx docker image

Got some problems with setting up drone with my gitea instance and because there are so much different guides with different configs over the past years for different environment variables for drone, i cannot setup this the way it works for me. And…
tmechen
  • 11
  • 4
0
votes
1 answer

steps marked with trigger: status = failure, always run, even if status is success

I want to send notification in case any of the build step fails in drone ci. I tried adding following trigger at various levels, but it always runs, even in case of success. Trigger that I am trying is as follows: trigger: status: -…
kishor borate
  • 158
  • 1
  • 11
0
votes
1 answer

approved organization required for login in a selfhosted Drone.io

I'm self hosting a Drone.io CI. After a OAuth Apps creation in my Github account and agreed all permissions (also my -public- organisation access), I'm always receiving this error message : Login Failed. User must be a member of an approved…
Juu'
  • 11
  • 3
0
votes
1 answer

Fine tune conditions on steps of a drone pipeline

I have a very basic .drone.yml file: kind: pipeline name: default steps: - name: build-testing-docker image: my-docker-repo/my-docker-image:latest when: event: pull_request and I'm trying to understand what are the possible…
Dror
  • 12,174
  • 21
  • 90
  • 160
0
votes
1 answer

drone.io use private repo for pulling FROM image

Have to use a private Image from aws or gcp for my build process in drone. The simplest DOCKERFILE example: FROM ***.dkr.ecr.eu-central-1.amazonaws.com/***:latest That means i have to login, which works fine. My drone.yml example: steps: - name:…
Paul Oskar Mayer
  • 1,107
  • 1
  • 10
  • 22
0
votes
1 answer

drone.io how to run command on local server

I have drone installed on a Mac mini as a CI/CD for Android and iOS apps. To build for iOS I need to run commands on the server itself. I know there is a ssh plugin, but is there another way to run commands on the host from a drone pipeline step?
terreb
  • 1,417
  • 2
  • 23
  • 40
0
votes
2 answers

Is the service of drone.io isolated for each build or shared?

The service of drone.io is a way to include some dependent service into the pipeline. I would like to know if the services will be created for each build, so Is the service isolated for each build or shared? I already tried to find it via…
Thiago Valentim
  • 500
  • 6
  • 14
0
votes
1 answer

drone ci deploy to google compute engine

im trying to use Drone ci for automaticaly deploy my app on Google cloud Compute Engine. Im tried in a lot of ways, but i cant deploy anything. I have the test and publish stages running fine, i can push autimaticaly my code to my google container…
kmilo93sd
  • 791
  • 1
  • 15
  • 35
0
votes
1 answer

Drone.io do not trigger git push

I am trying to add a dockerized drone.io to join my existing gitea (also in docker container) Drone is working and see each of my repo. I enable drone on one of them called my-app for the test. As drone need a file called .drone.yml, I created one &…
Leix
  • 125
  • 12