aboutsummaryrefslogtreecommitdiffstats
path: root/.drone.yml
blob: 8d679397698231fe1a7636be8937d4dc33676a54 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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