-
Notifications
You must be signed in to change notification settings - Fork 33
/
.drone.yml
49 lines (44 loc) · 1.14 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---
# XXX: putting this separator further down with code causes a parsing bug in drone lint
#
# Author: Hari Sekhon
# Date: 2020-02-29 12:05:52 +0000 (Sat, 29 Feb 2020)
#
# vim:ts=2:sts=2:sw=2:et
#
# https://github.com/HariSekhon/lib
#
# License: see accompanying Hari Sekhon LICENSE file
#
# 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
#
# https://www.linkedin.com/in/HariSekhon
#
# ============================================================================ #
# D r o n e C I
# ============================================================================ #
# https://docs.drone.io/quickstart/cli/
#
# https://docs.drone.io/cli/install/
#
# brew install drone-cli
#
# cd to this directory
#
# drone exec [--pipeline default] [--include=thisstep] [--exclude=thatstep]
kind: pipeline
type: docker
name: default
steps:
- name: build
image: ubuntu:18.04
#environment:
# DEBUG: 1
commands:
- setup/ci_bootstrap.sh
- make init
- make ci
- make test
trigger:
branch:
- master