Woodpecker is a community fork of the Drone CI system.
Go to file
2021-10-30 14:58:28 +02:00
.github Removing gha builds 2021-02-19 09:28:39 +01:00
.vscode Fix VSCode launch config to be able to debug server and agent (#249) 2021-07-19 15:36:33 +02:00
.woodpecker Use go embed for web files and remove httptreemux (#382) (#489) 2021-10-28 09:12:41 +02:00
charts Switch in docs to new docker hub image repo (#227) 2021-06-18 20:48:22 +02:00
cli Fix json tag for Pos at struct Line (#422) (#424) 2021-10-10 13:59:23 +02:00
cmd Add flag for not fetching permissions (FlatPermissions) (#491) 2021-10-28 12:36:32 +02:00
cncd Fix channel buffer used with signal.Notify (#421) (#423) 2021-10-10 13:59:48 +02:00
docs Support recursive glob for path conditions (#327) (#412) 2021-10-08 10:16:16 +02:00
drone-go Relaced laszlocph/woodpecker with woodpecker-ci/woodpecker 2021-05-25 14:08:27 +02:00
model Add support for path-prefix condition (#174) 2021-06-28 23:50:35 +02:00
plugins Relaced laszlocph/woodpecker with woodpecker-ci/woodpecker 2021-05-25 14:08:27 +02:00
remote Gitea use default branch (#480) (#482) 2021-10-27 01:03:19 +02:00
router Use go embed for web files and remove httptreemux (#382) (#489) 2021-10-28 09:12:41 +02:00
server Add flag for not fetching permissions (FlatPermissions) (#491) 2021-10-28 12:36:32 +02:00
shared Migrate jwt token lib (#332) 2021-09-21 16:21:41 +02:00
store Fix repo access (#476) (#477) 2021-10-26 23:27:05 +02:00
vendor Use go embed for web files and remove httptreemux (#382) (#489) 2021-10-28 09:12:41 +02:00
version Version is now a string coming from ldlags and git tags 2019-11-12 21:10:16 +01:00
web Use go embed for web files and remove httptreemux (#382) (#489) 2021-10-28 09:12:41 +02:00
.changelog.yml Changelog for v0.14.1 (#334) 2021-09-22 15:59:31 +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 Use go embed for web files and remove httptreemux (#382) (#489) 2021-10-28 09:12:41 +02:00
BUILDING Further org move 2021-05-25 14:15:22 +02:00
CHANGELOG.md Changelog for v0.14.3 (#497) 2021-10-30 14:58:28 +02:00
docker-compose.example.yml Enforce code format (#228) 2021-06-22 12:34:35 +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 Use go embed for web files and remove httptreemux (#382) (#489) 2021-10-28 09:12:41 +02:00
go.sum Use go embed for web files and remove httptreemux (#382) (#489) 2021-10-28 09:12:41 +02:00
LICENSE Wrap lines in LICENSE (#214) 2021-05-31 13:47:18 +02:00
Makefile fix: Build server with correct option (#237) 2021-06-30 17:17:54 +02:00
README.md Tidy up readme (#253) 2021-07-20 23:20:35 +02:00
tools.go Use go's vendoring (#284) (#415) 2021-10-08 12:41:28 +02:00

Woodpecker

A fork of the Drone CI system.

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

Go Report Card License https://discord.gg/fcMQqSMXJy

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 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
# .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 Woodpecker. With 50+ users, 130+ repos and more than 1100 builds a week.

Leave a comment if you're using it.

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.