Woodpecker is a community fork of the Drone CI system.
Go to file
Anbraten 06800cb61e
Change paths to use woodpecker instead of drone (#494)
* change paths to use woodpecker instead of drone

* improve sql file migration

* add migration notice
2021-10-28 14:02:43 -05:00
.github Add plugin marketplace (for official plugins) (#451) 2021-10-19 18:54:01 +02:00
.vscode update launch config (#359) 2021-09-26 00:46:07 +02:00
.woodpecker Release deb, rpm bundles (#405) 2021-10-20 21:55:09 +02:00
agent Move entirely to zerolog (#426) 2021-10-12 09:25:13 +02:00
charts Change paths to use woodpecker instead of drone (#494) 2021-10-28 14:02:43 -05:00
cli Use std methode to get SystemCertPool (#488) 2021-10-28 09:14:16 +02:00
cmd Change paths to use woodpecker instead of drone (#494) 2021-10-28 14:02:43 -05:00
docker Change paths to use woodpecker instead of drone (#494) 2021-10-28 14:02:43 -05:00
docs Change paths to use woodpecker instead of drone (#494) 2021-10-28 14:02:43 -05:00
nfpm fix deb, rpm releases (#465) 2021-10-21 18:34:49 +02:00
pipeline Switch default git plugin (#449) 2021-10-15 19:54:28 -05:00
server Change paths to use woodpecker instead of drone (#494) 2021-10-28 14:02:43 -05:00
shared Move entirely to zerolog (#426) 2021-10-12 09:25:13 +02:00
vendor Update Dependencies (#486) 2021-10-28 12:11:52 +02:00
version Version is now a string coming from ldlags and git tags 2019-11-12 21:10:16 +01:00
web pin ua-parser-js versions to ^0.7.30 (#467) 2021-10-24 12:58:56 +02:00
woodpecker-go Add log level API (#444) 2021-10-18 18:25:20 -05:00
.changelog.yml Changelog for v0.14.1 (#334) (#340) 2021-09-23 02:21:28 +02:00
.editorconfig Enforce code format (#228) 2021-06-22 12:34:35 +02:00
.gitignore Improve release (#400) 2021-10-04 19:50:21 +02:00
CHANGELOG.md Add changelog for v0.14.2 (#462) 2021-10-19 10:45:49 +02:00
CONTRIBUTING.md Community Guide (#296) 2021-09-11 23:45:18 +02:00
docker-compose.example.yml Change paths to use woodpecker instead of drone (#494) 2021-10-28 14:02:43 -05:00
go.mod Update Dependencies (#486) 2021-10-28 12:11:52 +02:00
go.sum Update Dependencies (#486) 2021-10-28 12:11:52 +02:00
LICENSE Optimize license files (#355) 2021-09-25 15:15:54 +02:00
Makefile fix deb, rpm releases (#465) 2021-10-21 18:34:49 +02:00
README.md Update links to woodpecker-ci.org (#445) 2021-10-14 18:13:57 +02:00
SECURITY.md Create SECURITY.md (#396) 2021-10-03 16:15:58 +02:00
tools.go Add Zerolint (#441) 2021-10-13 18:48:43 +02:00

Woodpecker



Woodpecker

Woodpecker is a community fork of the Drone CI system.

woodpecker

Support

Please consider to donate and become a backer. 🙏 [Become a backer]

Usage

.woodpecker.yml

  • Place your pipeline in a file named .woodpecker.yml in your repository
  • Pipeline steps can be named as you like
  • Run any command in the commands section
# .woodpecker.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
# .woodpecker.yml
pipeline:
  build:
    image: debian
    commands:
      - touch myfile
  a-test-step:
    image: debian
    commands:
      - cat myfile

Plugins are straightforward

  • 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
# .woodpecker.yml
pipeline:
  deploy-to-k8s:
    image: laszlocloud/my-k8s-plugin
    template: config/k8s/service.yml

Documentation

https://woodpecker-ci.org/

Who uses Woodpecker?

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

Leave a comment if you're using it.

Contribution

See Contributing Guide

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 are licensed under Creative Commons Attribution-ShareAlike 4.0 International Public License.