Woodpecker is a community fork of the Drone CI system.
Go to file
Ian c26b722736 Allow the agent to connect to a secure grpc endpoint
Add flags to allow the agent to connect to a secure grpc endpoint.

This can be done by placing nginx in front of the drone-server or updating the
code to accept tls servers for the grpc server.
2020-05-18 15:49:38 +01:00
.github Vendor folder gone 2019-10-24 11:17:07 +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 Format source code 2019-09-14 14:21:16 +02:00
cmd Allow the agent to connect to a secure grpc endpoint 2020-05-18 15:49:38 +01:00
cncd Migrating to yaml.v3 2019-11-15 10:21:08 +01:00
docs K8s DinD deployment 2020-04-28 21:30:52 +02:00
drone-go Project is renamed to Woodpecker 2019-08-27 13:07:19 +02:00
model Iterating on cance;ation logic 2019-09-16 15:19:09 +02:00
plugins Project is renamed to Woodpecker 2019-08-27 13:07:19 +02:00
remote Format source code 2019-09-14 14:21:16 +02:00
router Version is now a string coming from ldlags and git tags 2019-11-12 21:10:16 +01:00
server Administration articles moved 2019-11-13 20:04:14 +01:00
shared Just fixed format with go fmt ./... 2018-03-21 14:02:17 +01:00
store Format source code 2019-09-14 14:21:16 +02:00
version Version is now a string coming from ldlags and git tags 2019-11-12 21:10:16 +01:00
web Updated project linter rules and ran it 2019-11-15 10:50:46 +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 Fixing build - something changed with the Postgres image 2020-04-28 21:41:05 +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 Migrating to yaml.v3 2019-11-15 10:21:08 +01:00
go.sum Migrating to yaml.v3 2019-11-15 10:21:08 +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 Simplified Github README 2019-11-15 11:36:29 +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

.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 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
# .woodpecker.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.