1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-01-17 17:45:03 +02:00
2019-04-03 20:15:52 +02:00
2018-05-01 21:05:30 -07:00
2018-03-21 14:02:17 +01:00
2018-10-19 13:18:11 -07:00
2018-11-14 11:27:41 +00:00
2018-10-18 17:40:39 +02:00
2018-11-15 13:02:09 -08:00
2016-05-26 11:08:48 -07:00
2018-11-15 13:02:09 -08:00
2017-10-21 10:29:14 -07:00
2017-09-11 16:03:11 -07:00
2017-09-27 19:01:52 -07:00
2017-09-27 19:01:52 -07:00
2017-09-27 19:01:52 -07:00
2018-02-16 13:52:26 -08:00
2017-09-29 09:49:56 +08: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:

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:

Description
Woodpecker is a simple yet powerful CI/CD engine with great extensibility.
Readme 169 MiB
Languages
Go 86.4%
Vue 9%
TypeScript 3.3%
Makefile 0.7%
CSS 0.4%
Other 0.1%