1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-02-04 18:21:06 +02:00
Pawel Boguslawski e96a17dc9e Incomplete Gitea repository list fixed
Woodpecker may display incomplete list of Gitea
repositores user has access to because Gitea forces
paginated repo list reading. This mod fixes it.

Related: https://gitea.com/gitea/go-sdk/issues/507
Author-Change-Id: IB#1107754
2021-03-29 13:44:47 +02:00
2021-02-19 09:28:39 +01:00
2021-02-19 09:28:39 +01:00
2021-02-19 09:43:03 +01:00
2020-11-19 17:52:07 +08:00
2021-03-02 02:06:57 +01:00
2019-08-27 13:07:19 +02:00
2021-02-19 09:43:03 +01:00
2021-02-19 09:43:03 +01:00
2021-02-19 09:43:03 +01:00
2020-05-18 16:41:15 +01:00
2021-03-19 15:44:16 +01:00
2021-02-19 09:28:39 +01:00
2019-04-05 10:17:27 +02:00
2021-02-19 11:17:46 +01:00
2019-11-15 10:42:57 +01:00
2019-11-13 12:23:16 +01:00
2017-09-11 16:03:11 -07:00
2017-09-27 19:01:52 -07:00
2019-11-14 11:45:43 +01:00
2019-11-14 11:45:43 +01:00
2021-02-19 09:43:03 +01:00
2021-02-19 10:17:29 +01:00
2019-08-27 13:07:19 +02:00
2021-02-19 10:17:29 +01:00
2021-03-08 08:41:58 +01: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

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

Leave a note here if you are using it: https://github.com/laszlocph/woodpecker/issues/122

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.

Description
Woodpecker is a simple yet powerful CI/CD engine with great extensibility.
Readme Apache-2.0 174 MiB
Languages
Go 86.3%
Vue 9.1%
TypeScript 3.3%
Makefile 0.7%
CSS 0.4%
Other 0.1%