1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-01-17 17:45:03 +02:00
woodpecker/README.md

45 lines
2.0 KiB
Markdown
Raw Normal View History

2015-10-26 10:41:07 -07:00
[![Build Status](http://beta.drone.io/api/badges/drone/drone/status.svg)](http://beta.drone.io/drone/drone)
2015-10-30 13:55:50 -07:00
![Release Status](https://img.shields.io/badge/status-beta-yellow.svg?style=flat)
2015-10-30 13:47:50 -07:00
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/drone/drone?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
2015-07-09 17:01:03 -07:00
Drone is a Continuous Integration platform built on container technology. Every build is executed inside an ephemeral Docker container, giving developers complete control over their build environment with guaranteed isolation.
2017-02-01 09:28:24 +07:00
Browse the code at https://sourcegraph.com/github.com/drone/drone
2015-07-09 20:15:29 -07:00
### Goals
2017-01-20 12:50:36 +07:00
Drone's prime directive is to help teams [ship code like GitHub](https://github.com/blog/1241-deploying-at-github#always-be-shipping). Drone is easy to install, setup and maintain and offers a powerful container-based plugin system. Drone aspires to eventually offer an industry-wide replacement for Jenkins.
2015-07-09 20:15:29 -07:00
### Documentation
2015-07-09 17:01:03 -07:00
2016-12-30 09:33:19 -05:00
Documentation is published to [readme.drone.io](http://readme.drone.io)
2015-08-04 10:55:27 -07:00
### Community, Help
2015-05-31 13:36:51 -07:00
2015-08-04 10:55:27 -07:00
Contributions, questions, and comments are welcomed and encouraged. Drone developers hang out in the [drone/drone](https://gitter.im/drone/drone) room on gitter. We ask that you please post your questions to [gitter](https://gitter.im/drone/drone) before creating an issue.
2015-08-18 10:28:07 -07:00
2015-11-10 22:44:32 -08:00
### Installation
2015-08-18 13:57:40 -07:00
2016-12-30 09:33:19 -05:00
Please see our [installation guide](http://readme.drone.io/admin/) to install the official Docker image.
2015-11-10 22:44:32 -08:00
### From Source
Clone the repository to your Go workspace:
2015-08-18 13:57:40 -07:00
```
2017-02-17 16:28:06 +11:00
export PATH=$PATH:$GOPATH/bin
2015-08-18 13:57:40 -07:00
git clone git://github.com/drone/drone.git $GOPATH/src/github.com/drone/drone
cd $GOPATH/src/github.com/drone/drone
```
2015-08-18 10:28:07 -07:00
Commands to build from source:
```sh
2017-01-31 00:07:18 +07:00
make deps # Download required dependencies
make gen # Generate code
make build_static # Build the binary
2015-09-01 16:08:42 +02:00
```
2015-11-10 22:44:32 -08:00
If you are having trouble building this project please reference its `.drone.yml` file. Everything you need to know about building Drone is defined in that file.