No description
Find a file
2019-04-17 17:23:51 -04:00
.github closes issue #2534 [CI SKIP] 2019-04-13 01:58:26 -07:00
cmd Merge pull request #2670 from xuyang2/master [CI SKIP] 2019-04-16 16:14:16 -07:00
core fix some typos 2019-04-16 11:05:46 +08:00
docker
handler fix some typos 2019-04-16 11:05:46 +08:00
livelog
logger
metric
mock support for per-organization secrets 2019-04-14 17:06:16 -07:00
operator Merge pull request #2661 from tboerger/fix-matrix-convert 2019-04-16 22:19:57 -07:00
plugin Merge pull request #2670 from xuyang2/master [CI SKIP] 2019-04-16 16:14:16 -07:00
pubsub
scheduler
server
service fix some typos 2019-04-16 11:05:46 +08:00
session
store Fix typo in mysql migration file for org secrets 2019-04-17 17:23:51 -04:00
trigger fix some typos 2019-04-16 11:05:46 +08:00
version fix version test [CI SKIP] 2019-04-13 11:11:53 -07:00
web
.dockerignore
.drone.jsonnet fix some typos 2019-04-16 09:27:15 +08:00
.drone.script
.drone.yml
.gitignore
BUILDING
BUILDING_OSS
CHANGELOG.md bump go-scm to version 1.4.0 [CI SKIP] 2019-04-16 16:09:11 -07:00
go.mod bump go-scm to version 1.4.0 [CI SKIP] 2019-04-16 16:09:11 -07:00
go.sum Merge pull request #2661 from tboerger/fix-matrix-convert 2019-04-16 22:19:57 -07:00
LICENSE
NOTICE
Taskfile.yml

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:

pipeline:
  backend:
    image: golang
    commands:
      - go get
      - go build
      - go test

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

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

  notify:
    image: plugins/slack
    channel: developers
    username: drone

Documentation and Other Links: