Woodpecker is a community fork of the Drone CI system.
Go to file
2021-02-16 13:56:54 +01:00
.github Github Actions to use 1.13 2020-09-30 14:24:55 +02:00
.vscode Version is now a string coming from ldlags and git tags 2019-11-12 21:10:16 +01:00
build Create Makefile and targets to build project 2019-09-14 14:20:16 +02:00
cli Merge pull request #132 from JensHeinrich/feature/woodpecker-env 2021-01-18 14:33:53 +01:00
cmd Add WOODPECKER_ vars to agent 2020-08-26 13:54:25 +00:00
cncd feat: mask secrets 2020-11-19 17:52:07 +08:00
docs Add a notice at the top of the doc about Multi Pipeline and Github only 2020-12-07 18:53:15 -05:00
drone-go Project is renamed to Woodpecker 2019-08-27 13:07:19 +02:00
model Merge pull request #120 from imduffy15/docker-config-secrets 2020-05-20 08:43:11 +02:00
plugins Fix typos 2020-05-19 15:05:45 +01:00
remote Be more precise with the version number 2020-09-30 14:18:32 +02:00
router fix: update http status code 2020-11-27 11:29:07 +08:00
server Merge pull request #119 from imduffy15/owner-filter 2020-05-20 06:53:24 +02:00
shared Just fixed format with go fmt ./... 2018-03-21 14:02:17 +01:00
store Upgrade dependencies 2020-05-18 16:41:15 +01:00
version Version is now a string coming from ldlags and git tags 2019-11-12 21:10:16 +01:00
web Merge pull request #123 from laszlocph/dependabot/npm_and_yarn/web/websocket-extensions-0.1.4 2021-01-18 14:32:37 +01:00
.cli.sh Project is renamed to Woodpecker 2019-08-27 13:07:19 +02:00
.dockerignore Building OSS 2019-04-05 10:17:27 +02:00
.drone.sh ARM is not widely used, making the project leaner 2019-11-13 11:26:23 +01:00
.drone.yml Disabling alpine latest due to infrastructure issues. Will be back 2020-05-20 09:36:10 +02:00
.editorconfig Added .editorconfig 2019-11-15 10:42:57 +01:00
.gitignore Add missing requirements.txt 2019-11-13 12:23:16 +01:00
BUILDING Create Makefile and targets to build project 2019-09-14 14:20:16 +02:00
docker-compose.yml Project is renamed to Woodpecker 2019-08-27 13:07:19 +02:00
Dockerfile update base image to drone/ca-certs 2017-09-11 16:03:11 -07:00
Dockerfile.agent add alpine images 2017-09-27 19:01:52 -07:00
Dockerfile.agent.alpine Alpine upgrade 2019-11-14 11:45:43 +01:00
Dockerfile.alpine Alpine upgrade 2019-11-14 11:45:43 +01:00
go.mod Update Gitea SDK to v0.13.2 2021-01-29 16:04:29 +01:00
go.sum Update Gitea SDK to v0.13.2 2021-01-29 16:04:29 +01:00
LICENSE Project is renamed to Woodpecker 2019-08-27 13:07:19 +02:00
Makefile Version is now a string coming from ldlags and git tags 2019-11-12 21:10:16 +01:00
README.md Update README.md 2021-02-16 13:56:54 +01:00

Woodpecker

An opinionated fork of the Drone CI system.

  • Based on the v0.8 code tree
  • Focused on team usage
  • Fully Apache 2.0, no tiers

Go Report Card License

woodpecker

.drone.yml

  • Place your pipeline in a file named .drone.yml in your repository
  • Pipeline steps can be named as you like
  • Run any command in the commands section
# .drone.yml
pipeline:
  build:
    image: debian
    commands:
      - echo "This is the build step"
  a-test-step:
    image: debian
    commands:
      - echo "Testing.."

Build steps are containers

  • Define any Docker image as context
  • Install the needed tools in custom Docker images, use them as context
pipeline:
  build:
-    image: debian
+   image: mycompany/image-with-awscli
    commands:
      - aws help

File changes are incremental

  • Woodpecker clones the source code in the beginning pipeline
  • Changes to files are persisted through steps as the same volume is mounted to all steps
# .drone.yml
pipeline:
  build:
    image: debian
    commands:
      - touch myfile
  a-test-step:
    image: debian
    commands:
      - cat myfile

Plugins are straighforward

  • If you copy the same shell script from project to project
  • Pack it into a plugin instead
  • And make the yaml declarative
  • Plugins are Docker images with your script as an entrypoint
# Dockerfile
FROM laszlocloud/kubectl
COPY deploy /usr/local/deploy
ENTRYPOINT ["/usr/local/deploy"]
# deploy
kubectl apply -f $PLUGIN_TEMPLATE
# .drone.yml
pipeline:
  deploy-to-k8s:
    image: laszlocloud/my-k8s-plugin
    template: config/k8s/service.yml

Documentation

https://woodpecker.laszlo.cloud

Who uses Woodpecker

Currently I know of one organization using this fork. With 50+ users, 130+ repos and more than 1100 builds a week.

License

woodpecker is Apache 2.0 licensed with the source files in this repository having a header indicating which license they are under and what copyrights apply.

Files under the docs/ folder is licensed under Creative Commons Attribution-ShareAlike 4.0 International Public License. It is a derivative work of the https://github.com/drone/docs git repository.