No description
Find a file
Brad Rydzewski 33a8ecec91
Merge pull request #2721 from techknowlogick/rm-basic-auth-gitea
Remove basic auth as an option for Gitea
2019-09-01 13:25:43 -07:00
.github Update sample YAML in README [ci skip] 2019-08-31 08:37:24 -07:00
cmd Merge branch 'master' into rm-basic-auth-gitea 2019-08-23 23:13:09 -04:00
core Merge pull request #2801 from crossworth/patch-1 [ci skip] 2019-08-30 14:43:01 -07:00
docker bump to manifest 1.2 [ci skip] 2019-08-22 13:21:17 -07:00
handler added support for github deployment status 2019-08-26 12:26:09 -07:00
livelog audit headers 2019-03-13 14:47:47 -07:00
logger add build tags 2019-02-27 23:07:13 -08:00
metric fix oss build 2019-05-14 17:28:15 +02:00
mock support for per-organization secrets 2019-04-14 17:06:16 -07:00
operator added action to conditionals 2019-07-29 20:37:04 -07:00
plugin fix failing webhook test 2019-07-28 12:30:48 -07:00
pubsub add build tags 2019-02-27 23:07:13 -08:00
scheduler support legacy yaml conversion 2019-07-18 18:31:10 -07:00
scripts add .exe extension to windows binaries 2019-08-06 23:16:21 -07:00
server enable native tls [ci skip] 2019-04-25 18:07:28 -07:00
service added support for github deployment status 2019-08-26 12:26:09 -07:00
session session that handles legacy tokens from file 2019-06-06 13:13:08 -07:00
store added support for github deployment status 2019-08-26 12:26:09 -07:00
trigger added support for github deployment status 2019-08-26 12:26:09 -07:00
version added support for github deployment status 2019-08-26 12:26:09 -07: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.jsonnet fix some typos 2019-04-16 09:27:15 +08:00
.drone.script add pipelines to build windows agents 2019-08-06 22:47:04 -07:00
.drone.yml bump to manifest 1.2 [ci skip] 2019-08-22 13:21:17 -07:00
.gitignore include build scripts 2019-08-06 22:53:35 -07:00
BUILDING squash and merge local branch 2019-02-19 15:56:41 -08:00
BUILDING_OSS add building oss [ci skip] 2019-03-13 14:50:24 -07:00
CHANGELOG.md Merge branch 'master' into rm-basic-auth-gitea 2019-08-29 18:09:04 -04:00
go.mod added support for github deployment status 2019-08-26 12:26:09 -07:00
go.sum added support for github deployment status 2019-08-26 12:26:09 -07:00
LICENSE add rpc/v2 endpoint 2019-05-21 11:45:42 -07:00
NOTICE update notice [ci skip] 2019-02-19 19:55:28 -08:00
Taskfile.yml ensure unit tests run serially by package [ci skip] 2019-04-22 16:27:26 -07:00

Drone is a Continuous Delivery system built on container technology. Drone uses a simple YAML configuration file, a superset of docker-compose, to define and execute Pipelines inside Docker containers.


Sample Pipeline Configuration:

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

Documentation and Other Links: