No description
Find a file
TP Honey 3a23b0d0d4
Merge pull request #3233 from alikhil/patch-1
Update links to discourse in issue template
2022-06-21 10:48:36 +01:00
.github chore(issue_template): update links to discourse 2022-06-21 12:36:37 +03:00
cmd/drone-server Added OAuth2 token refresher for Gitlab (#3215) 2022-06-14 10:46:35 +01:00
core (maint) add warning around typo for stage_id in step struct 2022-01-11 10:39:57 +00:00
docker fixing a small typo in the compose readme. (#3077) 2021-05-04 10:59:47 +01:00
handler (dron-267) correctly set parent for promotion retry 2022-05-09 11:11:54 +01:00
livelog Rename files with camelCase name to use snake_case convention 2021-08-30 16:19:38 +02:00
logger add build tags 2019-02-27 23:07:13 -08:00
metric Datadog add the tag of 'remote:gitee' 2021-12-27 08:44:19 +08:00
mock Bump scm version to v1.24.0 (#3219) 2022-06-08 15:19:48 +01:00
operator refactor create / find / delete end points for cards (#3159) 2021-11-12 10:23:08 +00:00
plugin (maint) fix starlark/jsonnet tests on windows 2022-06-14 11:47:36 +01:00
pubsub Rename files with camelCase name to use snake_case convention 2021-08-30 16:19:38 +02:00
scheduler (feat) drone h/a: wrapped scheduler's signal func with redis mutex 2021-08-31 15:59:24 +02:00
scripts (feat) adding depends_on, image and detached fields to step 2021-06-22 13:57:04 +01:00
server Merge branch 'master' into master 2021-06-29 11:21:05 +02:00
service clean up debug code 2022-03-14 13:22:54 +00:00
session (fix) remove unused jwt-go library 2021-08-31 16:10:34 +01:00
store (bug) - fix original template scripts & remove amend scripts (#3229) 2022-06-15 09:11:28 +01:00
trigger Merge pull request #3088 from phil-davis/typo-fixes 2021-06-22 10:20:17 +01:00
version release prep for v2.12.1 (#3232) 2022-06-15 11:15:14 +01:00
web squash and merge local branch 2019-02-19 15:56:41 -08:00
.dockerignore update yaml for s3 upload 2016-05-26 11:08:48 -07:00
.drone.yml verify builds 2021-09-15 12:33:14 +02:00
.github_changelog_generator release prep v2.12.0 2022-05-13 11:52:09 +01:00
.gitignore event-stream supports timeout (#3125) 2021-08-31 17:45:07 +02:00
BUILDING remove deprecated steps 2021-06-22 16:33:40 +01:00
BUILDING_OSS fix OSS build for v1.4.0. 2019-09-16 17:48:57 +09:00
CHANGELOG.md release prep for v2.12.1 (#3232) 2022-06-15 11:15:14 +01:00
go.mod Bump scm version to v1.24.0 (#3219) 2022-06-08 15:19:48 +01:00
go.sum Bump scm version to v1.24.0 (#3219) 2022-06-08 15:19:48 +01:00
HISTORY.md release 2.0.5 2021-08-17 11:10:04 +01:00
LICENSE fixing URL 2022-04-28 02:21:02 -07:00
NOTICE update notice [ci skip] 2019-02-19 19:55:28 -08:00
Taskfile.yml card api and db work to support new cards feature 2021-09-24 10:06:26 +01:00

Drone

Welcome to the Drone codebase, we are thrilled to have you here!

What is Drone?

Drone is a continuous delivery system built on container technology. Drone uses a simple YAML build file, to define and execute build pipelines inside Docker containers.

Table of Contents

Community and Support

Harness Community Slack - Join the #drone slack channel to connect with our engineers and other users running Drone CI.
Harness Community Forum - Ask questions, find answers, and help other users.
Report A Bug - Find a bug? Please report in our forum under Drone Bugs. Please provide screenshots and steps to reproduce.
Events - Keep up to date with Drone events and check out previous events here.

Contributing

We encourage you to contribute to Drone! Whether that's joining in on the community slack or discourse, or contributing pull requests / documentation changes or raising issues.

Code of Conduct

Drone follows the CNCF Code of Conduct.

Setup Documentation

This section of the documentation will help you install and configure the Drone Server and one or many Runners. A runner is a standalone daemon that polls the server for pending pipelines to execute.

Usage Documentation

Our documentation can help you get started with the different types of pipelines/builds. There are different runners / plugins / extensions designed for different use cases to help make an efficient and simple build pipeline

Plugin Index

Plugins are used in build steps to perform actions, eg send a message to slack or push a container to a registry. We have an extensive list of community plugins to customize your build pipeline, you can find those here.

Example .drone.yml build file.

This build file contains a single pipeline (you can have multiple pipelines too) that builds a go application. The front end with npm. Publishes the docker container to a registry and announces the results to a slack room.

name: default

kind: pipeline
type: docker

steps:
- name: backend
  image: golang
  commands:
    - go get
    - go build
    - go test

- name: frontend
  image: node:6
  commands:
    - npm install
    - npm test

- name: publish
  image: plugins/docker
  settings:
    repo: octocat/hello-world
    tags: [ 1, 1.1, latest ]
    registry: index.docker.io

- name: notify
  image: plugins/slack
  settings:
    channel: developers
    username: drone

Building from source

We have two versions available: the Enterprise Edition and the Community Edition

Release procedure

Run the changelog generator.

docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u drone -p drone -t <secret github token>

You can generate a token by logging into your GitHub account and going to Settings -> Personal access tokens.

Next we tag the PR's with the fixes or enhancements labels. If the PR does not fulfill the requirements, do not add a label.

Before moving on make sure to update the version file version/version.go && version/version_test.go.

Run the changelog generator again with the future version according to semver.

docker run -it --rm -v "$(pwd)":/usr/local/src/your-app githubchangeloggenerator/github-changelog-generator -u harness -p drone -t <secret token> --future-release v1.0.0

Create your pull request for the release. Get it merged then tag the release.

⬆ Back to Top