Skip to content

Latest commit

 

History

History
96 lines (69 loc) · 3.54 KB

overview.md

File metadata and controls

96 lines (69 loc) · 3.54 KB
date title author weight aliases description
2000-01-01 00:00:00 +0000
Overview
bradrydzewski
1
/configure/overview/
/configure/pipeline/overview/
/getting-started/
/pipelines/
/user-guide/
/usage/overview/
/0.5/usage/repository/configuration/
/config
Overview of Pipeline configuration.

Pipelines help you automate steps in your software delivery process, such as initiating code builds, running automated tests, and deploying to a staging or production environment.

Pipeline execution is triggered by a source code repository. A change in code triggers a webhook to Drone which runs the corresponding pipeline. Other common triggers include automatically scheduled or user-initiated workflows.

Pipelines are configured by placing a .drone.yml file in the root of your git repository. The yaml syntax is designed to be easy to read and expressive so that anyone viewing the repository can understand the workflow.

Example pipeline configuration:

---
kind: pipeline
type: docker
name: default

steps:
- name: backend
  image: golang
  commands:
  - go build
  - go test

- name: frontend
  image: node
  commands:
  - npm install
  - npm run test

...

Drone supports different types of pipelines, each optimized for different use cases and runtime environments:

{{< link "pipeline/docker/overview" "Docker Pipelines" >}} {{< link "pipeline/kubernetes/overview" "Kubernetes Pipelines" >}} {{< link "pipeline/exec/overview" "Exec Pipelines" >}} {{< link "pipeline/ssh/overview" "SSH Pipelines" >}} {{< link "pipeline/digitalocean/overview" "Digital Ocean Pipelines" >}} {{< link "pipeline/macstadium/overview" "MacStadium Pipelines" >}}