Woodpecker is a community fork of the Drone CI system.
Go to file
6543 ca8e215cfa
Migrate to Xorm (#474)
close #234

* Migrate store
* Migrate tests
* Rewrite migrations
* Init fresh DB in on step
* Rm old stuff (meddler, sql files, dead code, ...)
2021-11-13 20:18:06 +01:00
.github Add plugin marketplace (for official plugins) (#451) 2021-10-19 18:54:01 +02:00
.vscode Rewrite of WebUI (#245) 2021-11-03 17:40:31 +01:00
.woodpecker Rewrite of WebUI (#245) 2021-11-03 17:40:31 +01:00
agent Migrate to Xorm (#474) 2021-11-13 20:18:06 +01:00
charts Change paths to use woodpecker instead of drone (#494) 2021-10-28 14:02:43 -05:00
cli Migrate to Xorm (#474) 2021-11-13 20:18:06 +01:00
cmd Migrate to Xorm (#474) 2021-11-13 20:18:06 +01: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 Migrate to Xorm (#474) 2021-11-13 20:18:06 +01:00
server Migrate to Xorm (#474) 2021-11-13 20:18:06 +01:00
shared Move entirely to zerolog (#426) 2021-10-12 09:25:13 +02:00
vendor Migrate to Xorm (#474) 2021-11-13 20:18:06 +01:00
version Version is now a string coming from ldlags and git tags 2019-11-12 21:10:16 +01:00
web Rewrite of WebUI (#245) 2021-11-03 17:40:31 +01: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 Changelog for v0.14.3 (#497) 2021-10-30 15:33:35 +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 Migrate to Xorm (#474) 2021-11-13 20:18:06 +01:00
go.sum Migrate to Xorm (#474) 2021-11-13 20:18:06 +01:00
LICENSE Optimize license files (#355) 2021-09-25 15:15:54 +02:00
Makefile Migrate to Xorm (#474) 2021-11-13 20:18:06 +01: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 Migrate to Xorm (#474) 2021-11-13 20:18:06 +01: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.