added .drone.yml
907ba85e
Hari Sekhon
committed
1 changed file
.drone.yml
/.drone.yml+50
/.drone.yml
Add comment 1 Plus  ---
Add comment 2 Plus  # XXX: putting this separator further down with code causes a parsing bug in drone lint
Add comment 3 Plus  #
Add comment 4 Plus  # Author: Hari Sekhon
Add comment 5 Plus  # Date: 2020-02-29 12:05:52 +0000 (Sat, 29 Feb 2020)
Add comment 6 Plus  #
Add comment 7 Plus  # vim:ts=2:sts=2:sw=2:et
Add comment 8 Plus  #
Add comment 9 Plus  # https://github.com/HariSekhon/Templates
Add comment 10 Plus  #
Add comment 11 Plus  # License: see accompanying Hari Sekhon LICENSE file
Add comment 12 Plus  #
Add comment 13 Plus  # If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
Add comment 14 Plus  #
Add comment 15 Plus  # https://www.linkedin.com/in/HariSekhon
Add comment 16 Plus  #
Add comment 17 Plus  
Add comment 18 Plus  # ============================================================================ #
Add comment 19 Plus  # D r o n e C I
Add comment 20 Plus  # ============================================================================ #
Add comment 21 Plus  
Add comment 22 Plus  # https://docs.drone.io/quickstart/cli/
Add comment 23 Plus  #
Add comment 24 Plus  # https://docs.drone.io/cli/install/
Add comment 25 Plus  #
Add comment 26 Plus  # brew install drone-cli
Add comment 27 Plus  #
Add comment 28 Plus  # cd to this directory
Add comment 29 Plus  #
Add comment 30 Plus  # drone exec [--pipeline default] [--include=thisstep] [--exclude=thatstep]
Add comment 31 Plus  
Add comment 32 Plus  kind: pipeline
Add comment 33 Plus  type: docker
Add comment 34 Plus  name: default
Add comment 35 Plus  
Add comment 36 Plus  steps:
Add comment 37 Plus   - name: build
Add comment 38 Plus   image: ubuntu:18.04
Add comment 39 Plus   #environment:
Add comment 40 Plus   # DEBUG: 1
Add comment 41 Plus   commands:
Add comment 42 Plus   - setup/ci_bootstrap.sh
Add comment 43 Plus   - make init
Add comment 44 Plus   - make ci
Add comment 45 Plus   - make test
Add comment 46 Plus  
Add comment 47 Plus  trigger:
Add comment 48 Plus   branch:
Add comment 49 Plus   - master
Add comment 50 Plus