Woodpecker is a community fork of the Drone CI system.
Go to file
Anbraten 5653577d7e
Fix sanitizePath (#326)
With #299 the `sanitizePath` has a bug now. If no special config (empty string) has been set it falls back to default values, but the `sanitizePath` function  the used the pipelince-config-path to sanitize pipeline names.
2021-09-21 04:21:13 +02:00
.github Add Support section to README (#310) 2021-09-17 18:34:11 +02:00
.vscode Fix VSCode launch config to be able to debug server and agent (#249) 2021-07-19 15:36:33 +02:00
.woodpecker [CI] Fix docs deploy & links (#301) 2021-09-11 18:48:52 +02:00
charts [CI] Fix docs deploy & links (#301) 2021-09-11 18:48:52 +02:00
cli Enforce code format (#228) 2021-06-22 12:34:35 +02:00
cmd Change pipeline config path resolution (#299) 2021-09-17 21:40:43 +02:00
cncd Add support for path-prefix condition (#174) 2021-06-28 23:50:35 +02:00
docs Remove non-existent changed status condition from docs (#322) 2021-09-19 13:02:24 +02:00
drone-go Remove push, tag and deployment webhook filters (#281) 2021-09-18 16:28:35 +02:00
model Remove push, tag and deployment webhook filters (#281) 2021-09-18 16:28:35 +02:00
plugins Relaced laszlocph/woodpecker with woodpecker-ci/woodpecker 2021-05-25 14:08:27 +02:00
remote Ignore pushes to tags for gitea (#289) 2021-08-31 03:00:29 +02:00
router Enforce code format (#228) 2021-06-22 12:34:35 +02:00
server Fix sanitizePath (#326) 2021-09-21 04:21:13 +02:00
shared Use server-host as source for public links and warn if it is set to localhost (#251) 2021-08-20 16:32:52 +02:00
store Remove push, tag and deployment webhook filters (#281) 2021-09-18 16:28:35 +02:00
vendor [CI] Run "build" on pull too (#287) 2021-08-30 20:48:19 +02:00
version Version is now a string coming from ldlags and git tags 2019-11-12 21:10:16 +01:00
web Remove push, tag and deployment webhook filters (#281) 2021-09-18 16:28:35 +02:00
.changelog.yml Changelog for v0.14.0-rc2 (#241) 2021-07-08 15:47:17 +02:00
.dockerignore Building OSS 2019-04-05 10:17:27 +02:00
.editorconfig Enforce code format (#228) 2021-06-22 12:34:35 +02:00
.gitignore [Docs] Migrate docs framework to Docusaurus (#282) 2021-09-11 17:10:32 +02:00
BUILDING Fix docs/makefile after #284 got merged (#291) 2021-09-09 19:39:59 +02:00
CHANGELOG.md Changelog for v0.14.0 2021-08-01 00:49:11 +02:00
CONTRIBUTING.md Community Guide (#296) 2021-09-11 23:45:18 +02:00
docker-compose.example.yml Use woodpecker env variable instead of drone in docker-compose (#264) 2021-08-17 21:16:03 +02:00
Dockerfile Switch in docs to new docker hub image repo (#227) 2021-06-18 20:48:22 +02:00
Dockerfile.agent Switch in docs to new docker hub image repo (#227) 2021-06-18 20:48:22 +02: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 [CI] Run "build" on pull too (#287) 2021-08-30 20:48:19 +02:00
go.sum [CI] Run "build" on pull too (#287) 2021-08-30 20:48:19 +02:00
LICENSE Wrap lines in LICENSE (#214) 2021-05-31 13:47:18 +02:00
Makefile Fix docs/makefile after #284 got merged (#291) 2021-09-09 19:39:59 +02:00
README.md Add Support section to README (#310) 2021-09-17 18:34:11 +02:00
tools.go [CI] Run "build" on pull too (#287) 2021-08-30 20:48:19 +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.github.io/

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.