1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2024-11-30 08:06:52 +02:00
woodpecker/README.md

41 lines
1.9 KiB
Markdown
Raw Normal View History

2015-10-26 19:41:07 +02:00
[![Build Status](http://beta.drone.io/api/badges/drone/drone/status.svg)](http://beta.drone.io/drone/drone)
2015-10-30 22:55:50 +02:00
![Release Status](https://img.shields.io/badge/status-beta-yellow.svg?style=flat)
2015-10-30 22:47:50 +02: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-10 02:01:03 +02: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.
2015-07-10 05:15:29 +02:00
### Goals
2017-01-20 07:50:36 +02: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-10 05:15:29 +02:00
### Documentation
2015-07-10 02:01:03 +02:00
2016-12-30 16:33:19 +02:00
Documentation is published to [readme.drone.io](http://readme.drone.io)
2015-08-04 19:55:27 +02:00
### Community, Help
2015-05-31 22:36:51 +02:00
2015-08-04 19:55:27 +02: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 19:28:07 +02:00
2015-11-11 08:44:32 +02:00
### Installation
2015-08-18 22:57:40 +02:00
2016-12-30 16:33:19 +02:00
Please see our [installation guide](http://readme.drone.io/admin/) to install the official Docker image.
2015-11-11 08:44:32 +02:00
### From Source
Clone the repository to your Go workspace:
2015-08-18 22:57:40 +02: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 19:28:07 +02:00
Commands to build from source:
```sh
2017-01-30 19:07:18 +02: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-11 08:44:32 +02: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.