projects
/
pub
/
USBasp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
72872ca
)
Add Drone CI build configuration.
author
Dean Camera
<dean@fourwalledcubicle.com>
Tue, 4 Dec 2018 10:10:30 +0000
(21:10 +1100)
committer
Dean Camera
<dean@fourwalledcubicle.com>
Tue, 4 Dec 2018 10:14:37 +0000
(21:14 +1100)
.drone.yml
[new file with mode: 0644]
patch
|
blob
diff --git a/.drone.yml
b/.drone.yml
new file mode 100644
(file)
index 0000000..
8d67939
--- /dev/null
+++ b/
.drone.yml
@@ -0,0
+1,18
@@
+kind: pipeline
+name: default
+
+steps:
+- name: Build
+ image: abcminiuser/docker-avr8-toolchain
+ commands:
+ - make --quiet all
+
+- name: Bootloaders
+ image: abcminiuser/docker-avr8-toolchain
+ commands:
+ - make --quiet -C Maintenance bootloaders
+
+- name: Tests
+ image: abcminiuser/docker-avr8-toolchain
+ commands:
+ - make --quiet -C BuildTests all